summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ares__timeval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ares__timeval.c b/ares__timeval.c
index 0d8bbfa..2fbf168 100644
--- a/ares__timeval.c
+++ b/ares__timeval.c
@@ -46,7 +46,7 @@ struct timeval ares__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;