commit 8102d294a28592da6ee1a0b80c2e33e2a84bae11 from: Markus Uhlin date: Mon Apr 27 05:16:11 2026 UTC Discarded fclose() return value commit - 44798111b04c51b6593deec01237b9a68300a26f commit + 8102d294a28592da6ee1a0b80c2e33e2a84bae11 blob - 91bbe436e986ec4fd06ea193a949fb9e8542d03b blob + 55afe114ac1a1e77eea48294e69401ea6347ccde --- FICS/addgroup.cpp +++ FICS/addgroup.cpp @@ -206,7 +206,7 @@ read_the_group_permissions_file(const char *path) if (feof(fp)) // NOLINT read_ok = true; - fclose(fp); + (void) fclose(fp); delete[] line; return (read_ok ? 0 : -1);