aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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];