diff options
-rw-r--r-- | src/w32proc.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/w32proc.c b/src/w32proc.c index b0881c25d6c..4c20ca13379 100644 --- a/src/w32proc.c +++ b/src/w32proc.c @@ -361,10 +361,8 @@ timer_loop (LPVOID arg) DWORD result = SuspendThread (itimer->caller_thread); if (result == (DWORD)-1) - { - DebPrint (("Thread %d exiting with status 2\n", which)); - return 2; - } + return 2; + handler (sig); ResumeThread (itimer->caller_thread); } |