diff options
Diffstat (limited to 'sysdeps/unix/sysv/linux/timer_getoverr.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/timer_getoverr.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/timer_getoverr.c b/sysdeps/unix/sysv/linux/timer_getoverr.c index 2bcac7993d..8f00192287 100644 --- a/sysdeps/unix/sysv/linux/timer_getoverr.c +++ b/sysdeps/unix/sysv/linux/timer_getoverr.c @@ -35,5 +35,7 @@ timer_getoverrun (timerid) struct timer *kt = (struct timer *) timerid; /* Get the information from the kernel. */ - return INLINE_SYSCALL_RETURN (timer_getoverrun, 1, int, kt->ktimerid); + int res = INLINE_SYSCALL (timer_getoverrun, 1, kt->ktimerid); + + return res; } |