diff options
author | David Blaikie <dblaikie@sourceware.org> | 2013-01-18 19:14:51 +0000 |
---|---|---|
committer | David Blaikie <dblaikie@sourceware.org> | 2013-01-18 19:14:51 +0000 |
commit | 2d8c5d7cdd8a580d40772544805fe04b8401a880 (patch) | |
tree | e5b8ff91c969c67b6db8f63bd1d53b74d69166d7 /gdb | |
parent | 46f352282bbb75ac5aa5d0b1d15eaf206c5bcf51 (diff) | |
download | gdb-2d8c5d7cdd8a580d40772544805fe04b8401a880.zip gdb-2d8c5d7cdd8a580d40772544805fe04b8401a880.tar.gz gdb-2d8c5d7cdd8a580d40772544805fe04b8401a880.tar.bz2 |
gdb/testsuite
* gdb.base/label.c (main): Correct the type of the second
parameter.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/testsuite/gdb.base/label.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 340a132..8b6562b 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -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. diff --git a/gdb/testsuite/gdb.base/label.c b/gdb/testsuite/gdb.base/label.c index f9cd8c3..c15e3bf 100644 --- a/gdb/testsuite/gdb.base/label.c +++ b/gdb/testsuite/gdb.base/label.c @@ -1,7 +1,7 @@ #include <stdio.h> int -main (int argc, char *argv) +main (int argc, char **argv) { int i = 0; goto there; |