diff --git a/sys/ddb/db_run.c b/sys/ddb/db_run.c index 5e42d745e16..bb7c3be8798 100644 --- a/sys/ddb/db_run.c +++ b/sys/ddb/db_run.c @@ -125,6 +125,7 @@ db_stop_at_pc(bool *is_breakpoint) *is_breakpoint = true; return (true); /* stop here */ } + return (false); /* continue the countdown */ } else if (*is_breakpoint) { #ifdef BKPT_SKIP BKPT_SKIP;