diff options
author | Yang Tse <yangsita@gmail.com> | 2008-05-10 23:50:55 +0000 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2008-05-10 23:50:55 +0000 |
commit | 60dd765b3dd73bd957bff42a990ba391c843a9ff (patch) | |
tree | e7e53f032adc14c9f5e8a065c8de9f64681bf011 /lib/timeval.c | |
parent | b380dd030f5d0974250f1ea9b871aee02733c2c8 (diff) | |
download | curl-60dd765b3dd73bd957bff42a990ba391c843a9ff.tar.gz |
fix syntax error: missing semicolon
Diffstat (limited to 'lib/timeval.c')
-rw-r--r-- | lib/timeval.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |