aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/playerdb.c
diff options
context:
space:
mode:
Diffstat (limited to 'FICS/playerdb.c')
-rw-r--r--FICS/playerdb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c
index d8963bb..cffd5b0 100644
--- a/FICS/playerdb.c
+++ b/FICS/playerdb.c
@@ -2945,7 +2945,7 @@ WriteMsgFile(int p, textlist *Head)
}
for (Cur = Head; Cur != NULL; Cur = Cur->next)
- fprintf(fp, "%s", Cur->text);
+ (void) fprintf(fp, "%s", Cur->text);
return (fclose(fp) == 0 ? 1 : 0);
}