aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libbb/time.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/time.c b/libbb/time.c
index 3e35542f3..525032d4d 100644
--- a/libbb/time.c
+++ b/libbb/time.c
@@ -33,7 +33,7 @@ unsigned long long monotonic_us(void)
33{ 33{
34 struct timeval tv; 34 struct timeval tv;
35 gettimeofday(&tv, NULL); 35 gettimeofday(&tv, NULL);
36 return tv.tv_sec * 1000000ULL + tv_usec; 36 return tv.tv_sec * 1000000ULL + tv.tv_usec;
37} 37}
38 38
39unsigned monotonic_sec(void) 39unsigned monotonic_sec(void)