diff --git a/libr/debug/debug.c b/libr/debug/debug.c index f883409bcc399..3743383084923 100644 --- a/libr/debug/debug.c +++ b/libr/debug/debug.c @@ -963,7 +963,7 @@ R_API int r_debug_continue_kill(RDebug *dbg, int sig) { /* handle general signals here based on the return from the wait * function */ - if (reason == R_DEBUG_REASON_SIGNAL && dbg->reason.signum != -1) { + if (dbg->reason.signum != -1) { int what = r_debug_signal_what (dbg, dbg->reason.signum); if (what & R_DBG_SIGNAL_CONT) { sig = dbg->reason.signum;