]> git.ipfire.org Git - thirdparty/postgresql.git/commit
Avoid mixing void and integer in a conditional expression.
authorTom Lane <tgl@sss.pgh.pa.us>
Sun, 2 Nov 2025 17:30:44 +0000 (12:30 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Sun, 2 Nov 2025 17:31:07 +0000 (12:31 -0500)
commit436d9ed690ebad81df2f98d702e2578def002699
tree332a9142c1ea7371574f1a6908e39ff58a45545c
parent14044eb25866113147ae82631f1e9259e5317cae
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
src/include/miscadmin.h