From: Samuel Thibault Date: Mon, 13 Jan 2025 23:11:33 +0000 (+0100) Subject: mach: Fix fallthrough warning X-Git-Tag: glibc-2.41~74 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2ac7701888c9918fcdd8b35adcbcd91d7e1e923f;p=thirdparty%2Fglibc.git mach: Fix fallthrough warning gcc would not take the /* FALLTHROUGH */ inside the #ifdef --- diff --git a/sysdeps/mach/clock_gettime.c b/sysdeps/mach/clock_gettime.c index d8c6681ec5..381ccb8451 100644 --- a/sysdeps/mach/clock_gettime.c +++ b/sysdeps/mach/clock_gettime.c @@ -52,8 +52,8 @@ __clock_gettime (clockid_t clock_id, struct timespec *ts) return 0; } } - /* FALLTHROUGH */ #endif + /* FALLTHROUGH */ case CLOCK_REALTIME: {