diff options
| author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-01-14 00:11:33 +0100 |
|---|---|---|
| committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-01-14 00:11:35 +0100 |
| commit | 2ac7701888c9918fcdd8b35adcbcd91d7e1e923f (patch) | |
| tree | a885aa1a4b82c62538b1ac33f97992b934295a88 /sysdeps/mach | |
| parent | f42634f8244ba80773c5f2207f01ea936a6746ca (diff) | |
| download | glibc-2ac7701888c9918fcdd8b35adcbcd91d7e1e923f.tar.xz glibc-2ac7701888c9918fcdd8b35adcbcd91d7e1e923f.zip | |
mach: Fix fallthrough warning
gcc would not take the /* FALLTHROUGH */ inside the #ifdef
Diffstat (limited to 'sysdeps/mach')
| -rw-r--r-- | sysdeps/mach/clock_gettime.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: { |
