diff options
Diffstat (limited to 'test/src/timer.c')
-rw-r--r-- | test/src/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/timer.c b/test/src/timer.c index 1b18633..c451c63 100644 --- a/test/src/timer.c +++ b/test/src/timer.c @@ -18,7 +18,7 @@ timer_usec(const timedelta_t *timer) { nstime_copy(&delta, &timer->t1); nstime_subtract(&delta, &timer->t0); - return (nstime_ns(&delta) / 1000); + return nstime_ns(&delta) / 1000; } void |