Преглед изворни кода

clock_adjtime: warn instead of error out

Waldemar Brodkorb пре 9 месеци
родитељ
комит
83b2c24e39
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      libc/sysdeps/linux/common/clock_adjtime.c

+ 1 - 1
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