From d5b4779fe1d33687af5dab7a775b728f665667d2 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 23 Dec 2023 19:09:16 +0100 Subject: Parentheses --- FICS/board.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FICS/board.c b/FICS/board.c index dc57151..dbc484f 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -1070,7 +1070,7 @@ wild_update(int style) [piecetype(b[f][r])]); } - fprintf(fp, " %c%c", f + 'a', r + '1'); + fprintf(fp, " %c%c", (f + 'a'), (r + '1')); } } -- cgit v1.2.3