From 1848c7e361f1a3a33487b60ab6fcb61ed1f62273 Mon Sep 17 00:00:00 2001 From: Mathias Lafeldt Date: Fri, 19 Aug 2022 14:17:18 +0200 Subject: Fix: Honor linter rules in CI and locally (#15492) RUSTFLAGS take precedence over `target..rustflags`. Therefore, setting the env var globally in CI would always override whatever linter rules are allowed or denied in .cargo/config.toml. With this change, we ensure that problems are detected both in CI and locally, using either cargo clippy or lint.js. --- ext/flash/sendfile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/flash/sendfile.rs b/ext/flash/sendfile.rs index 4efa7bc35..4caea712d 100644 --- a/ext/flash/sendfile.rs +++ b/ext/flash/sendfile.rs @@ -21,8 +21,8 @@ impl SendFile { let count = 0x7ffff000; let mut offset = self.written as libc::off_t; - // SAFETY: call to libc::sendfile() let res = + // SAFETY: call to libc::sendfile() unsafe { libc::sendfile(self.io.1, self.io.0, &mut offset, count) }; if res == -1 { Err(io::Error::last_os_error()) -- cgit v1.2.3