diff options
-rw-r--r-- | misplays.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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"); } } |