commit c4a1bf4014384c1c4e822b31fba989f48c21c6bb from: Markus Uhlin date: Sat Mar 7 11:23:42 2026 UTC Discard fclose() return value commit - 1a024141b5572fdc174c7c279b00cf1b20087b4d commit + c4a1bf4014384c1c4e822b31fba989f48c21c6bb blob - 1a1f408c6fd342ef28f2f535ebd1d28020b8abfc blob + 77a3ebb0ab23a3cdc98ef775e434e7a33625835a --- FICS/utils.c +++ FICS/utils.c @@ -510,7 +510,7 @@ psend_raw_file(int p, const char *dir, const char *fil if (ferror(fp)) { warnx("%s: %s: the error indicator is set", __func__, fname); - fclose(fp); + (void) fclose(fp); return -1; }