From adfd44390beb37d3c5e9358b7c81f824f5b00eb2 Mon Sep 17 00:00:00 2001 From: Malfurious Date: Tue, 7 May 2024 07:46:42 -0400 Subject: Show each active breakpoint one per line Signed-off-by: Malfurious --- misplays.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/misplays.c b/misplays.c index 96a9150..08627d9 100644 --- a/misplays.c +++ b/misplays.c @@ -44,13 +44,12 @@ static void list_breakpoints(struct thread *dbg, PANEL *pan) { pprintw(pan, "---\n"); for (struct breakpoint *bp=breaks->head; bp!=breaks->end; bp=bp->next) { - pprintw(pan, "0x%lx (%c) (%i) stack=0x%lx tid=%lu enabled=%d", + pprintw(pan, "0x%lx (%c) (%i) stack=0x%lx tid=%lu enabled=%d\n", bp->address, (bp->installed ? '*' : ' '), bp->hits, bp->stack, bp->tid, bp->enabled); } - pprintw(pan, "\n"); } } -- cgit v1.2.3