aboutsummaryrefslogtreecommitdiffstats
path: root/FICS
diff options
context:
space:
mode:
Diffstat (limited to 'FICS')
-rw-r--r--FICS/movecheck.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/FICS/movecheck.c b/FICS/movecheck.c
index 453bdee..ea6569b 100644
--- a/FICS/movecheck.c
+++ b/FICS/movecheck.c
@@ -720,7 +720,8 @@ move_calculate(game_state_t *gs, move_t *mt, int promote)
}
// Replace this with an algabraic de-parser
- sprintf(mt->algString, alg_unparse(gs, mt));
+ snprintf(mt->algString, sizeof mt->algString, "%s",
+ alg_unparse(gs, mt));
fakeMove = *gs;
execute_move(&fakeMove, mt, 0); // Calculates enPassant also