* breakpoint.c (breakpoint_init_inferior): Add 'else' to 'if'.
True and false paths are mutually exclusive.
2007-07-31 Michael Snyder <msnyder@access-company.com>
+ * breakpoint.c (breakpoint_init_inferior): Add 'else' to 'if'.
+ True and false paths are mutually exclusive.
+
* event-top.c (command_line_handler): Add pedantic return.
* f-valprint.c (info_common_command): Bail out to prevent null
/* Likewise for watchpoints on local expressions. */
if (b->exp_valid_block != NULL)
delete_breakpoint (b);
- if (context == inf_starting)
+ else if (context == inf_starting)
{
/* Reset val field to force reread of starting value
in insert_breakpoints. */