From 49be905f037fbd22b6ae0275efbab2ed95d4d9b7 Mon Sep 17 00:00:00 2001 From: Justin Wind Date: Wed, 23 May 2012 14:42:02 -0700 Subject: [PATCH] typo, missing semicolon --- common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.43.2