diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 1bef98471c3..9a7d733ddef 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -114,7 +114,8 @@ extern void ProcessInterrupts(void); (unlikely(InterruptPending)) #else #define INTERRUPTS_PENDING_CONDITION() \ - (unlikely(UNBLOCKED_SIGNAL_QUEUE()) ? pgwin32_dispatch_queued_signals() : 0, \ + (unlikely(UNBLOCKED_SIGNAL_QUEUE()) ? \ + pgwin32_dispatch_queued_signals() : (void) 0, \ unlikely(InterruptPending)) #endif