diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/linux/adjtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/linux/adjtime.c b/src/linux/adjtime.c index fa8af9f0..5a707f2f 100644 --- a/src/linux/adjtime.c +++ b/src/linux/adjtime.c @@ -15,7 +15,7 @@ int adjtime(const struct timeval *in, struct timeval *out) tx.offset = in->tv_sec*1000000 + in->tv_usec; tx.modes = ADJ_OFFSET_SINGLESHOT; } - if (syscall(SYS_adjtimex, &tx) < 0) return -1; + if (adjtimex(&tx) < 0) return -1; if (out) { out->tv_sec = tx.offset / 1000000; if ((out->tv_usec = tx.offset % 1000000) < 0) { |