From a425687eb569ecaa448fea1f2d53e5d883dd0462 Mon Sep 17 00:00:00 2001 From: lvllvl <24905907+lvllvl@users.noreply.github.com> Date: Sun, 12 Jan 2025 21:08:48 +0000 Subject: [PATCH] chore: update based on suggested changes --- libc-test/build.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libc-test/build.rs b/libc-test/build.rs index 92ffb656eca0..eb2a5dfe72c4 100644 --- a/libc-test/build.rs +++ b/libc-test/build.rs @@ -3186,7 +3186,7 @@ fn test_neutrino(target: &str) { cfg.skip_type(move |ty| { match ty { - // FIXME(neutrino): `sighandler_t` type is incorrect, see: + // FIXME(sighandler): `sighandler_t` type is incorrect, see: // https://github.com/rust-lang/libc/issues/1359 "sighandler_t" => true, @@ -3681,7 +3681,7 @@ fn test_linux(target: &str) { return true; } match ty { - // FIXME(linux): `sighandler_t` type is incorrect, see: + // FIXME(sighandler): `sighandler_t` type is incorrect, see: // https://github.com/rust-lang/libc/issues/1359 "sighandler_t" => true, @@ -3996,7 +3996,7 @@ fn test_linux(target: &str) { // See: https://github.com/rust-lang/libc/issues/1356 "ENOATTR" => true, - // FIXME(linux): SIGUNUSED was removed in glibc 2.26 + // FIXME(deprecated): SIGUNUSED was removed in glibc 2.26 // Users should use SIGSYS instead. "SIGUNUSED" => true,