diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2026-04-27 07:16:11 +0200 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2026-04-27 07:16:11 +0200 |
| commit | 8102d294a28592da6ee1a0b80c2e33e2a84bae11 (patch) | |
| tree | 24f515e0e2c0ee5f0ae20e9d97533378f7e1f7de /FICS | |
| parent | 44798111b04c51b6593deec01237b9a68300a26f (diff) | |
Discarded fclose() return value
Diffstat (limited to 'FICS')
| -rw-r--r-- | FICS/addgroup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/addgroup.cpp b/FICS/addgroup.cpp index 91bbe43..55afe11 100644 --- a/FICS/addgroup.cpp +++ b/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); |
