From a1ad0db8a6d829eddf1478cee44ae976bbcd325f Mon Sep 17 00:00:00 2001 From: Sebastiano Tronto Date: Mon, 6 Apr 2026 14:48:54 +0100 Subject: Fix integer conversions in code, tests and some tools --- test/090_allowedmoves/allowedmoves_tests.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'test/090_allowedmoves/allowedmoves_tests.c') diff --git a/test/090_allowedmoves/allowedmoves_tests.c b/test/090_allowedmoves/allowedmoves_tests.c index 6bc0e33..cff8303 100644 --- a/test/090_allowedmoves/allowedmoves_tests.c +++ b/test/090_allowedmoves/allowedmoves_tests.c @@ -13,8 +13,8 @@ static char *moves[] = { void run(void) { char movestr[STRLENMAX]; - uint8_t m[100]; - int n, i, j; + uint8_t j, m[100]; + int n, i; fgets(movestr, STRLENMAX, stdin); n = atoi(movestr); -- cgit v1.3