aboutsummaryrefslogtreecommitdiffstats
path: root/FICS
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2026-03-24 21:17:49 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2026-03-24 21:17:49 +0100
commit89e6b8decafe1526f685d760e1e8e73e8432a390 (patch)
treeee01a3c2d885239d6fe53afc7268df73e5663e42 /FICS
parent3b177e47cdfde760682cf7b6ae1beddb5645b352 (diff)
Discarded fprintf() return values -- writing to stderr is ok
Diffstat (limited to 'FICS')
-rw-r--r--FICS/eco.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/eco.c b/FICS/eco.c
index 48017fb..c561676 100644
--- a/FICS/eco.c
+++ b/FICS/eco.c
@@ -188,13 +188,13 @@ ECO_init(void)
fclose(fp);
ECO_book[i] = NULL;
- fprintf(stderr, "%d entries in ECO book\n", i);
+ (void) fprintf(stderr, "%d entries in ECO book\n", i);
ECO_entries = i;
while (--i >= 0) {
if (ECO_book[i] == NULL) {
- fprintf(stderr, "ERROR! ECO book position number %d "
- "is NULL.", i);
+ (void) fprintf(stderr, "ERROR! ECO book position "
+ "number %d is NULL.\n", i);
}
}
}
@@ -259,7 +259,7 @@ NIC_init(void)
fclose(fp);
NIC_book[i] = NULL;
- fprintf(stderr, "%d entries in NIC book\n", i);
+ (void) fprintf(stderr, "%d entries in NIC book\n", i);
NIC_entries = i;
}
@@ -323,7 +323,7 @@ LONG_init(void)
fclose(fp);
LONG_book[i] = NULL;
- fprintf(stderr, "%d entries in LONG book\n", i);
+ (void) fprintf(stderr, "%d entries in LONG book\n", i);
LONG_entries = i;
}