diff options
| author | Markus Uhlin <markus@nifty-networks.net> | 2026-03-08 00:29:48 +0100 |
|---|---|---|
| committer | Markus Uhlin <markus@nifty-networks.net> | 2026-03-08 00:29:48 +0100 |
| commit | 383bb365e77f6c753f63fc559d4d4faef0d8636a (patch) | |
| tree | 554e8c01b05cc6d0211a4887c82e9a97719f32a3 /FICS/utils.c | |
| parent | 9b5e600ae886bec92d2edefe96279d9e9fda9671 (diff) | |
file_exists: discard the 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 81bd564..3e05ac6 100644 --- a/FICS/utils.c +++ b/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; } |
