Fix bootstrap.
authorMatt Austern <austern@apple.com>
Tue, 21 Sep 2004 18:27:29 +0000 (18:27 +0000)
committerMatt Austern <austern@gcc.gnu.org>
Tue, 21 Sep 2004 18:27:29 +0000 (18:27 +0000)
* gjavah.c (free_method_name_list): Fix function definition so
it's a proper C prototype.

From-SVN: r87815

gcc/java/ChangeLog
gcc/java/gjavah.c

index 255eaaa6bbab4679cb621c79b441fa3432bd8f37..0d705828e32389f50f88ce4e07aca3b32fc5c69a 100644 (file)
@@ -1,3 +1,9 @@
+2004-09-21  Matt Austern  <austern@apple.com>
+
+       Fix bootstrap.
+       * gjavah.c (free_method_name_list): Fix function definition so
+       it's a proper C prototype.
+       
 2004-09-21  Tom Tromey  <tromey@redhat.com>
 
        PR java/17575:
index d62e585758e62788eb8dffefc2e53263ea03ade5..58f5e98a8d686e4ef0604d92326f223de1030eb6 100644 (file)
@@ -638,7 +638,7 @@ name_is_method_p (const unsigned char *name, int length)
 
 /* Free the method name list.  */
 static void
-free_method_name_list ()
+free_method_name_list (void)
 {
   struct method_name *p = method_name_list;
   while (p != NULL)