From 83b2c24e3933ec4f108c715991f0ddef56a2a3aa Mon Sep 17 00:00:00 2001 From: Waldemar Brodkorb Date: Tue, 14 Jan 2025 09:38:29 +0100 Subject: clock_adjtime: warn instead of error out --- libc/sysdeps/linux/common/clock_adjtime.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libc/sysdeps/linux/common/clock_adjtime.c b/libc/sysdeps/linux/common/clock_adjtime.c index 53f64e9d5..ada256ccd 100644 --- a/libc/sysdeps/linux/common/clock_adjtime.c +++ b/libc/sysdeps/linux/common/clock_adjtime.c @@ -15,5 +15,5 @@ _syscall2_64(int, clock_adjtime, clockid_t, clock_id, struct timex*, ntx) #elif defined(__NR_clock_adjtime) _syscall2(int, clock_adjtime, clockid_t, clock_id, struct timex*, ntx) #else -#error "clock_adjtime syscall is not defined!" +#warning "clock_adjtime syscall is not defined!" #endif -- cgit v1.2.3