From 785ec89c2097202feb010b747bcf40465c0d3dfd Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 23 Dec 2023 23:38:41 +0100 Subject: Fixed long statement --- FICS/board.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/FICS/board.c b/FICS/board.c index 37f9e0c..ee851f3 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -75,7 +75,11 @@ PUBLIC int (*styleFuncs[MAX_STYLES])() = { style13 }; -PRIVATE const int mach_type = (1<<7) | (1<<8) | (1<<9) | (1<<10) | (1<<11); +PRIVATE const int mach_type = ((1 << 7) | + (1 << 8) | + (1 << 9) | + (1 << 10) | + (1 << 11)); PRIVATE char bstring[MAX_BOARD_STRING_LEGTH]; -- cgit v1.2.3