diff options
| author | Rosen Penev | 2020-03-25 23:11:40 +0000 |
|---|---|---|
| committer | Hans Dedecker | 2020-03-26 19:46:11 +0000 |
| commit | b1e83288fdbf9ac80f5377b279404adaf05e0c4d (patch) | |
| tree | e5cfe3f734a999d88a98f39b4451f257047fe33e | |
| parent | dbdef938279ec649b25b98a9b61f81f17953ef21 (diff) | |
| download | netifd-b1e83288fdbf9ac80f5377b279404adaf05e0c4d.tar.gz | |
system-linux: fix compilation with musl 1.2.0
Switched to the plain function instead of the now gone syscall.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
| -rw-r--r-- | system-linux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system-linux.c b/system-linux.c index d533be8..d36d287 100644 --- a/system-linux.c +++ b/system-linux.c @@ -2421,7 +2421,7 @@ time_t system_get_rtime(void) struct timespec ts; struct timeval tv; - if (syscall(__NR_clock_gettime, CLOCK_MONOTONIC, &ts) == 0) + if (clock_gettime(CLOCK_MONOTONIC, &ts) == 0) return ts.tv_sec; if (gettimeofday(&tv, NULL) == 0) |