From 133c8f28e9556f6cbe21a11e9901247df62919c0 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Mon, 16 Mar 2026 00:04:18 +0100 Subject: Replaced snprintf() with msnprintf() --- FICS/movecheck.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'FICS') diff --git a/FICS/movecheck.c b/FICS/movecheck.c index 3954f42..5d71182 100644 --- a/FICS/movecheck.c +++ b/FICS/movecheck.c @@ -39,6 +39,7 @@ #include "board.h" #include "common.h" #include "gamedb.h" +#include "maxxes-utils.h" #include "movecheck.h" #include "network.h" #include "playerdb.h" @@ -860,7 +861,7 @@ move_calculate(game_state_t *gs, move_t *mt, int promote) } // Replace this with an algabraic de-parser - snprintf(mt->algString, sizeof mt->algString, "%s", + msnprintf(mt->algString, sizeof mt->algString, "%s", alg_unparse(gs, mt)); fakeMove = *gs; execute_move(&fakeMove, mt, 0); // Calculates enPassant also -- cgit v1.2.3