Avoid mixing void and integer in a conditional expression.

Tom Lane <tgl@sss.pgh.pa.us>

Commit: fdbc6757276208bb87498d4f17ef884baf2e90fe
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2025-11-02T17:31:01Z
Releases: 18.1
Avoid mixing void and integer in a conditional expression.

The C standard says that the second and third arguments of a
conditional operator shall be both void type or both not-void
type.  The Windows version of INTERRUPTS_PENDING_CONDITION()
got this wrong.  It's pretty harmless because the result of
the operator is ignored anyway, but apparently recent versions
of MSVC have started issuing a warning about it.  Silence the
warning by casting the dummy zero to void.

Reported-by: Christian Ullrich <chris@chrullrich.net>
Author: Bryan Green <dbryan.green@gmail.com>
Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/cc4ef8db-f8dc-4347-8a22-e7ebf44c0308@chrullrich.net
Backpatch-through: 13

Files

PathChange+/−
src/include/miscadmin.h modified +2 −1

Discussion