pgsql: Suppress -Wunused-result warning about write().

From: Nathan Bossart <nathan(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Suppress -Wunused-result warning about write().
Date: 2023-12-06 23:18:42
Message-ID: E1rB1AA-008wBa-7t@gemulon.postgresql.org
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Suppress -Wunused-result warning about write().

pg_test_fsync's signal_cleanup() intentionally ignores the write()
result since there's not much we could do about it, but certain
compilers make that harder than it ought to be.

This was missed in commit 52e98d4502.

Reviewed-by: Tristan Partin, Peter Eisentraut
Discussion: https://postgr.es/m/20231206161839.GA2828158%40nathanxps13

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/c2a465b2c94fb44211c350f73b5a11978d3b4536

Modified Files
--------------
src/bin/pg_test_fsync/pg_test_fsync.c | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Michael Paquier 2023-12-06 23:31:20 pgsql: Fix assertion failure with REINDEX and event triggers
Previous Message Peter Eisentraut 2023-12-06 09:23:11 pgsql: Use signal-safe functions in signal handler