test-parse-datetime.c: accommodate a relatively strict gcc warning
authorJim Meyering <meyering@redhat.com>
Wed, 31 Aug 2011 14:43:29 +0000 (16:43 +0200)
committerJim Meyering <meyering@redhat.com>
Wed, 31 Aug 2011 14:43:29 +0000 (16:43 +0200)
* tests/test-parse-datetime.c (gmt_offset): Declare function "static",
to avoid a warning from gcc's -Werror=missing-declarations.
Insert a few spaces-before-funcall-parenthesis.

ChangeLog
tests/test-parse-datetime.c

index b112f74..2c86304 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2011-08-31  Jim Meyering  <meyering@redhat.com>
+
+       test-parse-datetime.c: accommodate a relatively strict gcc warning
+       * tests/test-parse-datetime.c (gmt_offset): Declare function "static",
+       to avoid a warning from gcc's -Werror=missing-declarations.
+       Insert a few spaces-before-funcall-parenthesis.
+
 2011-08-17  J.T. Conklin  <jtc@acorntoolworks.com>
 
        parse-datetime: accept ISO 8601 date and time rep with "T" separator
index 4cb85d5..ac408cc 100644 (file)
@@ -36,7 +36,7 @@
 #define LOG(str, now, res) (void) 0
 #endif
 
-static const charconst day_table[] =
+static const char *const day_table[] =
 {
   "SUNDAY",
   "MONDAY",
@@ -93,21 +93,21 @@ tm_diff (struct tm const *a, struct tm const *b)
 }
 #endif /* ! HAVE_TM_GMTOFF */
 
-long
-gmt_offset()
+static long
+gmt_offset ()
 {
   time_t now;
   long gmtoff;
 
-  time(&now);
+  time (&now);
 
 #if !HAVE_TM_GMTOFF
-  struct tm tm_local = *localtime(&now);
-  struct tm tm_gmt   = *gmtime(&now);
+  struct tm tm_local = *localtime (&now);
+  struct tm tm_gmt   = *gmtime (&now);
 
-  gmtoff = tm_diff(&tm_local, &tm_gmt);
+  gmtoff = tm_diff (&tm_local, &tm_gmt);
 #else
-  gmtoff = localtime(&now)->tm_gmtoff;
+  gmtoff = localtime (&now)->tm_gmtoff;
 #endif
 
   return gmtoff;
@@ -126,7 +126,7 @@ main (int argc _GL_UNUSED, char **argv)
 
   set_program_name (argv[0]);
 
-  gmtoff = gmt_offset();
+  gmtoff = gmt_offset ();
 
 
   /* ISO 8601 extended date and time of day representation,