diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2026-03-07 12:23:42 +0100 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2026-03-07 12:23:42 +0100 |
| commit | c4a1bf4014384c1c4e822b31fba989f48c21c6bb (patch) | |
| tree | 3adb8c4d0501a5b47de0c282fd4a2b120fa2a332 /FICS/utils.c | |
| parent | 1a024141b5572fdc174c7c279b00cf1b20087b4d (diff) | |
Discard fclose() return value
Diffstat (limited to 'FICS/utils.c')
| -rw-r--r-- | FICS/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/utils.c b/FICS/utils.c index 1a1f408..77a3ebb 100644 --- a/FICS/utils.c +++ b/FICS/utils.c @@ -510,7 +510,7 @@ psend_raw_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; } |
