gdb/testsuite

* gdb.base/label.c (main): Correct the type of the second
	parameter.
This commit is contained in:
David Blaikie 2013-01-18 19:14:51 +00:00
parent 46f352282b
commit 2d8c5d7cdd
2 changed files with 6 additions and 1 deletions

View 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.

View File

@ -1,7 +1,7 @@
#include <stdio.h>
int
main (int argc, char *argv)
main (int argc, char **argv)
{
int i = 0;
goto there;