typo, missing semicolon
authorJustin Wind <justin.wind@gmail.com>
Wed, 23 May 2012 21:42:02 +0000 (14:42 -0700)
committerJustin Wind <justin.wind@gmail.com>
Wed, 23 May 2012 21:42:02 +0000 (14:42 -0700)
common.c

index bf94ef7c98341ea198a0618d847c9f79fde0c172..43217719ba99144150d997adb32998bb9c3e4833 100644 (file)
--- 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;