diff options
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/board.c | 2 |
1 files changed, 1 insertions, 1 deletions
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')); } } |