From c4a1bf4014384c1c4e822b31fba989f48c21c6bb Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 7 Mar 2026 12:23:42 +0100 Subject: Discard fclose() return value --- FICS/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'FICS/utils.c') diff --git a/FICS/utils.c b/FICS/utils.c index 1a1f408..77a3ebb 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -510,7 +510,7 @@ psend_raw_file(int p, const char *dir, const char *file) if (ferror(fp)) { warnx("%s: %s: the error indicator is set", __func__, fname); - fclose(fp); + (void) fclose(fp); return -1; } -- cgit v1.2.3