summaryrefslogtreecommitdiffstats
path: root/misplays.c
diff options
context:
space:
mode:
Diffstat (limited to 'misplays.c')
-rw-r--r--misplays.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misplays.c b/misplays.c
index 4fec040..0910012 100644
--- a/misplays.c
+++ b/misplays.c
@@ -43,7 +43,7 @@ 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 ", bp->address);
+ pprintw(pan, "0x%lx (%c) ", bp->address, (bp->installed ? '*' : ' '));
}
pprintw(pan, "\n");
}