diff --git a/src/linux.rs b/src/linux.rs index efc0aac821..1f87e3bcce 100644 --- a/src/linux.rs +++ b/src/linux.rs @@ -283,7 +283,7 @@ impl AsRawFd for TaggedControlSocket { } } -fn get_max_open_files() -> Result { +fn get_max_open_files() -> Result { let mut buf = mem::MaybeUninit::::zeroed(); // Safe because this will only modify `buf` and we check the return value.