(test_syntax_error): Add `const' to paramater
authorJim Meyering <jim@meyering.net>
Sun, 28 Apr 2002 17:09:12 +0000 (17:09 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 28 Apr 2002 17:09:12 +0000 (17:09 +0000)
declarations to avoid new warning from gcc.

src/test.c

index 8056795e340d2537203667b9d8d028811c00e476..15c8718ec2cc5cd404d97aaf57800f7ef5d8f8fb 100644 (file)
@@ -122,12 +122,12 @@ static int term PARAMS ((void));
 static int and PARAMS ((void));
 static int or PARAMS ((void));
 
-static void test_syntax_error PARAMS ((char *format, char *arg))
+static void test_syntax_error PARAMS ((char const *format, char const *arg))
      ATTRIBUTE_NORETURN;
 static void beyond PARAMS ((void)) ATTRIBUTE_NORETURN;
 
 static void
-test_syntax_error (char *format, char *arg)
+test_syntax_error (char const *format, char const *arg)
 {
   fprintf (stderr, "%s: ", argv[0]);
   fprintf (stderr, format, arg);