diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 8ce6c13fffc..42087111eb8 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -109,7 +109,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