diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 4438c09cee8..73f09587c4e 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -113,7 +113,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