insert_breakpoints -- insert cast to eliminate warning.
This commit is contained in:
parent
3ab2abae9a
commit
320d5bd8b6
|
@ -1,3 +1,8 @@
|
||||||
|
Wed Jan 13 19:33:16 1999 David Taylor <taylor@texas.cygnus.com>
|
||||||
|
|
||||||
|
* breakpoint.c (insert_breakpoints): insert cast to eliminate
|
||||||
|
warning.
|
||||||
|
|
||||||
Tue Jan 12 17:00:00 1999 Edith Epstein <eepstein@sophia.cygnus.com>
|
Tue Jan 12 17:00:00 1999 Edith Epstein <eepstein@sophia.cygnus.com>
|
||||||
|
|
||||||
* inftarg.c (child_create_inferior): fixed HPUXHPPA specific
|
* inftarg.c (child_create_inferior): fixed HPUXHPPA specific
|
||||||
|
|
|
@ -665,10 +665,11 @@ insert_breakpoints ()
|
||||||
/* Bp set, now make sure callbacks are enabled */
|
/* Bp set, now make sure callbacks are enabled */
|
||||||
args.kind = b->type == bp_catch_catch ? EX_EVENT_CATCH : EX_EVENT_THROW;
|
args.kind = b->type == bp_catch_catch ? EX_EVENT_CATCH : EX_EVENT_THROW;
|
||||||
args.enable = 1;
|
args.enable = 1;
|
||||||
sal = catch_errors ((int (*) PARAMS ((char *)))
|
sal = (struct symtab_and_line *)
|
||||||
cover_target_enable_exception_callback,
|
catch_errors ((int (*) PARAMS ((char *)))
|
||||||
(char *) &args,
|
cover_target_enable_exception_callback,
|
||||||
message, RETURN_MASK_ALL);
|
(char *) &args,
|
||||||
|
message, RETURN_MASK_ALL);
|
||||||
if (sal && (sal != (struct symtab_and_line *) -1))
|
if (sal && (sal != (struct symtab_and_line *) -1))
|
||||||
{
|
{
|
||||||
b->inserted = 1;
|
b->inserted = 1;
|
||||||
|
|
Loading…
Reference in New Issue