diff options
| author | Malfurious <m@lfurio.us> | 2024-05-07 07:46:42 -0400 | 
|---|---|---|
| committer | Malfurious <m@lfurio.us> | 2024-05-08 05:57:59 -0400 | 
| commit | adfd44390beb37d3c5e9358b7c81f824f5b00eb2 (patch) | |
| tree | e3a81aae6e71d4f124d93e6c2de0bf193fed5f2a | |
| parent | b67c753ac8bed628b5596ff71909708500d432a2 (diff) | |
| download | misplays-adfd44390beb37d3c5e9358b7c81f824f5b00eb2.tar.gz misplays-adfd44390beb37d3c5e9358b7c81f824f5b00eb2.zip  | |
Show each active breakpoint one per line
Signed-off-by: Malfurious <m@lfurio.us>
| -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");      }  }  | 
