commit 383bb365e77f6c753f63fc559d4d4faef0d8636a from: Markus Uhlin date: Sat Mar 7 23:29:48 2026 UTC file_exists: discard the fclose() return value commit - 9b5e600ae886bec92d2edefe96279d9e9fda9671 commit + 383bb365e77f6c753f63fc559d4d4faef0d8636a blob - 81bd564608ea601d0dd2c5860c6716d01ee6d727 blob + 3e05ac6efde9c98cee134109cf11b9f29304d27a --- FICS/utils.c +++ FICS/utils.c @@ -1087,7 +1087,7 @@ file_exists(const char *fname) if ((fp = fopen(fname, "r")) == NULL) return 0; - fclose(fp); + (void) fclose(fp); return 1; }