From 30c7809195d2337388ac28eccc633d4b453622e5 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 7 Mar 2026 12:39:01 +0100 Subject: Discarded fclose() return --- FICS/utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'FICS') diff --git a/FICS/utils.c b/FICS/utils.c index 7534e94..96b54cd 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -555,7 +555,7 @@ psend_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; } parray[p].last_file = xstrdup(fname); -- cgit v1.2.3