gdb: fix indentation within print_one_breakpoint_location
Spotted some code in print_one_breakpoint_location that was not indented correctly, this commit just changes the indentation. There should be no user visible changes after this commit.
This commit is contained in:
parent
f7c3b037c0
commit
7594741ebc
@ -6484,15 +6484,15 @@ print_one_breakpoint_location (struct breakpoint *b,
|
|||||||
inf_nums.push_back (inf->num);
|
inf_nums.push_back (inf->num);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* For backward compatibility, don't display inferiors in CLI unless
|
/* For backward compatibility, don't display inferiors in CLI unless
|
||||||
there are several. Always display for MI. */
|
there are several. Always display for MI. */
|
||||||
if (allflag
|
if (allflag
|
||||||
|| (!gdbarch_has_global_breakpoints (target_gdbarch ())
|
|| (!gdbarch_has_global_breakpoints (target_gdbarch ())
|
||||||
&& (program_spaces.size () > 1
|
&& (program_spaces.size () > 1
|
||||||
|| number_of_inferiors () > 1)
|
|| number_of_inferiors () > 1)
|
||||||
/* LOC is for existing B, it cannot be in
|
/* LOC is for existing B, it cannot be in
|
||||||
moribund_locations and thus having NULL OWNER. */
|
moribund_locations and thus having NULL OWNER. */
|
||||||
&& loc->owner->type != bp_catchpoint))
|
&& loc->owner->type != bp_catchpoint))
|
||||||
mi_only = 0;
|
mi_only = 0;
|
||||||
output_thread_groups (uiout, "thread-groups", inf_nums, mi_only);
|
output_thread_groups (uiout, "thread-groups", inf_nums, mi_only);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user