diff options
-rw-r--r-- | FICS/gamedb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FICS/gamedb.c b/FICS/gamedb.c index 43b868c..1f4e577 100644 --- a/FICS/gamedb.c +++ b/FICS/gamedb.c @@ -1559,7 +1559,7 @@ RemoveHistGame(char *file, int maxlines) int count = 0; long int When, oppWhen; - _Static_assert(20 < ARRAY_SIZE(Opponent)); + _Static_assert(20 < ARRAY_SIZE(Opponent), "Not within bounds"); When = oppWhen = 0; if ((fp = fopen(file, "r")) == NULL) { |