From: David Blaikie Date: Fri, 18 Jan 2013 19:14:51 +0000 (+0000) Subject: gdb/testsuite X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2d8c5d7cdd8a580d40772544805fe04b8401a880;p=binutils-gdb.git gdb/testsuite * gdb.base/label.c (main): Correct the type of the second parameter. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 340a132c928..8b6562b1bb1 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2013-01-18  David Blaikie   + + * gdb.base/label.c (main): Correct the type of the second + parameter. + 2013-01-18 Tom Tromey * gdb.dwarf2/trace-crash.s: New file. diff --git a/gdb/testsuite/gdb.base/label.c b/gdb/testsuite/gdb.base/label.c index f9cd8c39a94..c15e3bf6c84 100644 --- a/gdb/testsuite/gdb.base/label.c +++ b/gdb/testsuite/gdb.base/label.c @@ -1,7 +1,7 @@ #include int -main (int argc, char *argv) +main (int argc, char **argv) { int i = 0; goto there;