From 8e4de09b99b7a9aa153367724a5bc7563ed2568a Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sat, 10 May 2008 23:50:55 +0000 Subject: [PATCH] fix syntax error: missing semicolon --- ares__timeval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.7.4