2002-02-10 Michael Chastain <mec@shout.net>
authorMichael Chastain <mec@google.com>
Mon, 11 Feb 2002 04:47:59 +0000 (04:47 +0000)
committerMichael Chastain <mec@google.com>
Mon, 11 Feb 2002 04:47:59 +0000 (04:47 +0000)
* gdb.base/funcargs.c (localvars_after_alloca): Fix return type.
(call_after_alloca): Ditto.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/funcargs.c

index 313da9a..4fc75f3 100644 (file)
@@ -1,3 +1,8 @@
+2002-02-10  Michael Chastain  <mec@shout.net>
+
+       * gdb.base/funcargs.c (localvars_after_alloca): Fix return type.
+       (call_after_alloca): Ditto.
+
 2002-02-10  Daniel Jacobowitz  <drow@mvista.com>
 
        * gdb.base/ending-run.exp: Guard "cont" test with
index 98d390b..31c5eec 100644 (file)
@@ -634,7 +634,7 @@ void test_struct_args ()
 #ifdef PROTOTYPES
 void localvars_after_alloca (char c, short s, int i, long l)
 #else
-int
+void
 localvars_after_alloca (c, s, i, l)
      char c;
      short s;
@@ -671,7 +671,7 @@ char c; int i; short s; long l; unsigned char uc; unsigned short us; unsigned lo
 #ifdef PROTOTYPES
 void call_after_alloca (char c, short s, int i, long l)
 #else
-int
+void
 call_after_alloca (c, s, i, l)
      char c;
      short s;