commit 30c7809195d2337388ac28eccc633d4b453622e5 from: Markus Uhlin date: Sat Mar 7 11:39:01 2026 UTC Discarded fclose() return commit - a52020cc2f235e0764d8afed4c05799e940c4e0f commit + 30c7809195d2337388ac28eccc633d4b453622e5 blob - 7534e94fb68516a60808a9beb62404d9e180bf56 blob + 96b54cd4e33e068df6fa1a73f3a2610de333a377 --- FICS/utils.c +++ 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);