cargo fmt

This commit is contained in:
auronandace
2026-05-21 08:56:18 +01:00
parent 613ff4b860
commit 402ceb1c95
+1 -3
View File
@@ -57,7 +57,5 @@ pub unsafe extern "C" fn ftok(path: *const c_char, id: c_int) -> key_t {
}
// Borrowed from musl
(stat.st_ino & 0xffff) as key_t
| ((stat.st_dev & 0xff) << 16) as key_t
| ((id & 0xff) << 24)
(stat.st_ino & 0xffff) as key_t | ((stat.st_dev & 0xff) << 16) as key_t | ((id & 0xff) << 24)
}