gdb: fix nulltr -> nullptr typo

Change-Id: I04403bd85ec3fa75ea14130d68daba675a2a8aeb
This commit is contained in:
Simon Marchi
2021-11-08 16:45:30 -05:00
parent 6f4cb31cf2
commit 234f075cc6

View File

@@ -310,7 +310,7 @@ block_starting_point_at (CORE_ADDR pc, const struct block *block)
static bool
stopped_by_user_bp_inline_frame (const block *frame_block, bpstat *stop_chain)
{
for (bpstat *s = stop_chain; s != nulltr; s = s->next)
for (bpstat *s = stop_chain; s != nullptr; s = s->next)
{
struct breakpoint *bpt = s->breakpoint_at;