diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-11-23 18:52:31 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-11-23 18:52:31 +0100 |
commit | 416065932a201e4fa249ffb31520180b4139c074 (patch) | |
tree | 86fa63e948966af7925901ac36069449fba97ff2 /FICS | |
parent | c5a9716e18dbfdab7a21f12ca6a608ac71927b7b (diff) |
Added alignment
Diffstat (limited to 'FICS')
-rw-r--r-- | FICS/gamedb.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/FICS/gamedb.c b/FICS/gamedb.c index 9514c91..dd345fd 100644 --- a/FICS/gamedb.c +++ b/FICS/gamedb.c @@ -905,7 +905,7 @@ ReadMove(FILE *fp, move_t *m) return -1; _Static_assert(ARRAY_SIZE(m->moveString) > 7, "'moveString' too small"); - _Static_assert(ARRAY_SIZE(m->algString) > 7, "'algString' too small"); + _Static_assert(ARRAY_SIZE(m->algString) > 7, "'algString' too small"); if (sscanf(line, "%d %d %d %d %d %d %d %d %d \"%7[^\"]\" \"%7[^\"]\" " "%u %u\n", @@ -1908,8 +1908,8 @@ addjournalitem(int p, char count2, char *WhiteName2, int WhiteRating2, _Static_assert(ARRAY_SIZE(BlackName) > 19, "'BlackName' too small"); - _Static_assert(ARRAY_SIZE(type) > 99, "'type' too small"); - _Static_assert(ARRAY_SIZE(eco) > 99, "'eco' too small"); + _Static_assert(ARRAY_SIZE(type) > 99, "'type' too small"); + _Static_assert(ARRAY_SIZE(eco) > 99, "'eco' too small"); _Static_assert(ARRAY_SIZE(ending) > 99, "'ending' too small"); _Static_assert(ARRAY_SIZE(result) > 99, "'result' too small"); @@ -2003,8 +2003,8 @@ pjournal(int p, int p1, char *fname) _Static_assert(ARRAY_SIZE(WhiteName) > 19, "'WhiteName' too small"); _Static_assert(ARRAY_SIZE(BlackName) > 19, "'BlackName' too small"); - _Static_assert(ARRAY_SIZE(type) > 99, "'type' too small"); - _Static_assert(ARRAY_SIZE(eco) > 99, "'eco' too small"); + _Static_assert(ARRAY_SIZE(type) > 99, "'type' too small"); + _Static_assert(ARRAY_SIZE(eco) > 99, "'eco' too small"); _Static_assert(ARRAY_SIZE(ending) > 99, "'ending' too small"); _Static_assert(ARRAY_SIZE(result) > 99, "'result' too small"); |