Browse Source

2001-07-17 Elena Zannoni <ezannoni@redhat.com>

* top.c (catch_errors): Convert PTR to void * in parameters list.
	(quit_cover): Ditto.
gdb_s390-2001-09-26-branch
Elena Zannoni 25 years ago
parent
commit
d0c8cdfbfd
  1. 5
      gdb/ChangeLog
  2. 4
      gdb/top.c

5
gdb/ChangeLog

@ -1,3 +1,8 @@
2001-07-17 Elena Zannoni <ezannoni@redhat.com>
* top.c (catch_errors): Convert PTR to void * in parameters list.
(quit_cover): Ditto.
2001-07-17 Stephane Carrez <Stephane.Carrez@worldnet.fr>
* source.c (find_source_lines): Remove tui test, must be replaced

4
gdb/top.c

@ -378,7 +378,7 @@ return_to_top_level (enum return_reason reason)
between utils.c and top.c? */
int
catch_errors (catch_errors_ftype *func, PTR args, char *errstring,
catch_errors (catch_errors_ftype *func, void * args, char *errstring,
return_mask mask)
{
SIGJMP_BUF *saved_catch;
@ -512,7 +512,7 @@ catch_command_errors (catch_command_errors_ftype * command,
gdb to use the event loop as the default command loop and we merge
event-top.c into this file, top.c */
/* static */ int
quit_cover (PTR s)
quit_cover (void *s)
{
caution = 0; /* Throw caution to the wind -- we're exiting.
This prevents asking the user dumb questions. */

Loading…
Cancel
Save