]> granicus.if.org Git - curl/commitdiff
fix syntax error: missing semicolon
authorYang Tse <yangsita@gmail.com>
Sat, 10 May 2008 23:50:55 +0000 (23:50 +0000)
committerYang Tse <yangsita@gmail.com>
Sat, 10 May 2008 23:50:55 +0000 (23:50 +0000)
ares/ares__timeval.c
lib/timeval.c
src/curlutil.c
tests/libtest/testutil.c

index 0d8bbfa65b12eb9ca552f2de979ab427af01400e..2fbf1688c22e7f897ba08011c7edcb6de5310096 100644 (file)
@@ -46,7 +46,7 @@ struct timeval ares__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;
index b36633384d654a2f1d259bdebf1ed39056e6e080..0bedfbe816be2556f8903d65e7d1025a0d174c09 100644 (file)
@@ -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;
index 12a7d2e06510cb53ea88f5950f948b200e68fea6..a687a9a447fccd64ed81d6465af65ab8d1a3dc8d 100644 (file)
@@ -54,7 +54,7 @@ struct timeval cutil_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;
index 8ed2b2f08459e653cd542a639109e00a78b2e28d..df90cdccb95e99ffe90e0fcfc997fa36cb0da280 100644 (file)
@@ -54,7 +54,7 @@ struct timeval tutil_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;