Fix to ignore clippy warning
https: //rust-lang.github.io/rust-clippy/master/index.html#/eq_op
Test: m rust
bug: http://b/303252546, b/314018281
Change-Id: Ibc81a03de577d45b348cca53426a8af73a36cede
diff --git a/authfs/service/src/main.rs b/authfs/service/src/main.rs
index 78de07a..67e22a5 100644
--- a/authfs/service/src/main.rs
+++ b/authfs/service/src/main.rs
@@ -127,6 +127,7 @@
Ok(unsafe { OwnedFd::from_raw_fd(raw_fd) })
}
+#[allow(clippy::eq_op)]
fn try_main() -> Result<()> {
let debuggable = env!("TARGET_BUILD_VARIANT") != "user";
let log_level = if debuggable { log::Level::Trace } else { log::Level::Info };