From: Justin Wind Date: Wed, 23 May 2012 21:42:02 +0000 (-0700) Subject: typo, missing semicolon X-Git-Url: http://git.squeep.com/?p=dcpu16;a=commitdiff_plain;h=49be905f037fbd22b6ae0275efbab2ed95d4d9b7 typo, missing semicolon --- diff --git a/common.c b/common.c index bf94ef7..4321771 100644 --- a/common.c +++ b/common.c @@ -237,7 +237,7 @@ int gettimespecofday(struct timespec *ts) { ts->tv_sec = mts.tv_sec; ts->tv_nsec = mts.tv_nsec; #else /* __MACH__ */ - retval = clock_gettime(CLOCK_REALTIME, ts) + retval = clock_gettime(CLOCK_REALTIME, ts); #endif /* __MACH__ */ return retval;