Fix mixed decl in nstime.c

Fix mixed decl in the gettimeofday() branch of nstime_update()
This commit is contained in:
Elliot Ronaghan 2016-05-27 16:20:23 -07:00 committed by Jason Evans
parent 09d7bdb314
commit 48384dc2d8

View File

@ -128,9 +128,11 @@ nstime_update(nstime_t *time)
time->ns = ts.tv_sec * BILLION + ts.tv_nsec;
}
#else
struct timeval tv;
gettimeofday(&tv, NULL);
time->ns = tv.tv_sec * BILLION + tv.tv_usec * 1000;
{
struct timeval tv;
gettimeofday(&tv, NULL);
time->ns = tv.tv_sec * BILLION + tv.tv_usec * 1000;
}
#endif
/* Handle non-monotonic clocks. */