diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 23:38:41 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 23:38:41 +0100 |
commit | 785ec89c2097202feb010b747bcf40465c0d3dfd (patch) | |
tree | 4212522c0b8e57195837252f0a25b9367bc735ba /FICS/board.c | |
parent | 4c069e9832ff8782444025d460727e06816ae0c7 (diff) |
Fixed long statement
Diffstat (limited to 'FICS/board.c')
-rw-r--r-- | FICS/board.c | 6 |
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]; |