aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/curlutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/curlutil.c b/src/curlutil.c
index 12a7d2e06..a687a9a44 100644
--- a/src/curlutil.c
+++ b/src/curlutil.c
@@ -54,7 +54,7 @@ struct timeval cutil_tvnow(void)
*/
struct timeval now;
struct timespec tsnow;
- (void)clock_gettime(CLOCK_MONOTONIC, &tsnow)
+ (void)clock_gettime(CLOCK_MONOTONIC, &tsnow);
now.tv_sec = tsnow.tv_sec;
now.tv_usec = tsnow.tv_nsec / 1000;
return now;