diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-01-18 15:55:53 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-01-18 15:55:53 +0000 |
commit | 4efb68b1ad0f40fa002c954c213a516d1e39cfb3 (patch) | |
tree | dd698b5a588dd03316e6d392016860ebd132cef6 /gdb/infcmd.c | |
parent | 88e90c405f7b96dc90b19bde321f219e129e7e1c (diff) | |
download | binutils-gdb-4efb68b1ad0f40fa002c954c213a516d1e39cfb3.tar.gz |
2003-01-18 Andrew Cagney <ac131313@redhat.com>
* ada-valprint.c: Eliminate PTR.
* breakpoint.c, corelow.c, cris-tdep.c, dbxread.c: Ditto.
* defs.h, dve3900-rom.c, dwarf2read.c, dwarfread.c: Ditto.
* exec.c, hppa-tdep.c, hpread.c, infcmd.c, mdebugread.c: Ditto.
* objfiles.c, objfiles.h, ocd.c, remote-es.c: Ditto.
* remote-mips.c, remote-sds.c, remote-vx.c: Ditto.
* solib-svr4.c, solib.c, stack.c, symfile.c, symfile.h: Ditto.
* symmisc.c, v850ice.c, xcoffread.c, cli/cli-script.c: Ditto.
Diffstat (limited to 'gdb/infcmd.c')
-rw-r--r-- | gdb/infcmd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/infcmd.c b/gdb/infcmd.c index c0889acb6d9..8e9db39ed20 100644 --- a/gdb/infcmd.c +++ b/gdb/infcmd.c @@ -114,7 +114,7 @@ void _initialize_infcmd (void); #define GO_USAGE "Usage: go <location>\n" -static void breakpoint_auto_delete_contents (PTR); +static void breakpoint_auto_delete_contents (void *); #define ERROR_NO_INFERIOR \ if (!target_has_execution) error ("The program is not being run."); @@ -953,7 +953,7 @@ signal_command (char *signum_exp, int from_tty) pointed to by arg (which is really a bpstat *). */ static void -breakpoint_auto_delete_contents (PTR arg) +breakpoint_auto_delete_contents (void *arg) { breakpoint_auto_delete (*(bpstat *) arg); } |