gdb/testsuite
authorDavid Blaikie <dblaikie@sourceware.org>
Fri, 18 Jan 2013 19:14:51 +0000 (19:14 +0000)
committerDavid Blaikie <dblaikie@sourceware.org>
Fri, 18 Jan 2013 19:14:51 +0000 (19:14 +0000)
* gdb.base/label.c (main): Correct the type of the second
parameter.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/label.c

index 340a132c9288a082d9aba2d763997d2adaca01cc..8b6562b1bb1c53a424f63990e59f7ce90b96dc69 100644 (file)
@@ -1,3 +1,8 @@
+2013-01-18  David Blaikie  <dblaikie@gmail.com>
+
+       * gdb.base/label.c (main): Correct the type of the second
+       parameter.
+
 2013-01-18  Tom Tromey  <tromey@redhat.com>
 
        * gdb.dwarf2/trace-crash.s: New file.
index f9cd8c39a94c8a3a7c37f04c6fe72916ed8d551b..c15e3bf6c847cbb863b304e818b9d0a234d92301 100644 (file)
@@ -1,7 +1,7 @@
 #include <stdio.h>
 
 int
-main (int argc, char *argv)
+main (int argc, char **argv)
 {
   int i = 0;
   goto there;