From 60dd765b3dd73bd957bff42a990ba391c843a9ff Mon Sep 17 00:00:00 2001 From: Yang Tse Date: Sat, 10 May 2008 23:50:55 +0000 Subject: fix syntax error: missing semicolon --- lib/timeval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/timeval.c b/lib/timeval.c index b36633384..0bedfbe81 100644 --- a/lib/timeval.c +++ b/lib/timeval.c @@ -52,7 +52,7 @@ struct timeval curlx_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; -- cgit v1.2.3