aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-23 23:38:41 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-23 23:38:41 +0100
commit785ec89c2097202feb010b747bcf40465c0d3dfd (patch)
tree4212522c0b8e57195837252f0a25b9367bc735ba
parent4c069e9832ff8782444025d460727e06816ae0c7 (diff)
Fixed long statement
-rw-r--r--FICS/board.c6
1 files changed, 5 insertions, 1 deletions
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];