From 55332f072b158d86ffe5a2f3b42532f4e61d42ad Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 25 Apr 2026 13:06:13 +0200 Subject: Usage of mfprintf() --- FICS/command.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FICS/command.c b/FICS/command.c index b13cb35..0d0f9f2 100644 --- a/FICS/command.c +++ b/FICS/command.c @@ -1340,9 +1340,9 @@ commands_init(void) while (command_list[i].comm_name) { if (command_list[i].adminLevel >= ADMIN_ADMIN) - fprintf(afp, "%s\n", command_list[i].comm_name); + mfprintf(afp, "%s\n", command_list[i].comm_name); else - fprintf(fp, "%s\n", command_list[i].comm_name); + mfprintf(fp, "%s\n", command_list[i].comm_name); i++; } -- cgit v1.2.3