From 95b36f2d4f7a7eee3f731c9c736f7b36707039c1 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Tue, 30 Apr 2024 18:21:24 +0200 Subject: [PATCH] uucore: remove unused spell-checker:disable --- src/uucore/src/lib/features/fsext.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/uucore/src/lib/features/fsext.rs b/src/uucore/src/lib/features/fsext.rs index 99db194f8..db235b116 100644 --- a/src/uucore/src/lib/features/fsext.rs +++ b/src/uucore/src/lib/features/fsext.rs @@ -359,7 +359,7 @@ use libc::c_int; ))] extern "C" { #[cfg(all(target_vendor = "apple", target_arch = "x86_64"))] - #[link_name = "getmntinfo$INODE64"] // spell-checker:disable-line + #[link_name = "getmntinfo$INODE64"] fn get_mount_info(mount_buffer_p: *mut *mut StatFs, flags: c_int) -> c_int; #[cfg(any( @@ -367,14 +367,14 @@ extern "C" { target_os = "openbsd", all(target_vendor = "apple", target_arch = "aarch64") ))] - #[link_name = "getmntinfo"] // spell-checker:disable-line + #[link_name = "getmntinfo"] fn get_mount_info(mount_buffer_p: *mut *mut StatFs, flags: c_int) -> c_int; // Rust on FreeBSD uses 11.x ABI for filesystem metadata syscalls. // Call the right version of the symbol for getmntinfo() result to // match libc StatFS layout. #[cfg(target_os = "freebsd")] - #[link_name = "getmntinfo@FBSD_1.0"] // spell-checker:disable-line + #[link_name = "getmntinfo@FBSD_1.0"] fn get_mount_info(mount_buffer_p: *mut *mut StatFs, flags: c_int) -> c_int; }