diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2024-07-17 18:11:36 +0200 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2024-07-17 18:11:39 +0200 |
commit | c98c40a47c6f1c522a485d2610e51267541adc52 (patch) | |
tree | 07b62efb2f49130050bbcfccb2e7beec4930c439 /FICS/gamedb.h | |
parent | 38d8d13a0c06626caf6ed8d9425f57afa42e7665 (diff) |
Explicitly specified the array size of 'bstr' and 'rstr'
Diffstat (limited to 'FICS/gamedb.h')
-rw-r--r-- | FICS/gamedb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FICS/gamedb.h b/FICS/gamedb.h index 5b4ceef..d123028 100644 --- a/FICS/gamedb.h +++ b/FICS/gamedb.h @@ -31,8 +31,8 @@ #include "board.h" -extern const char *bstr[]; -extern const char *rstr[]; +extern const char *bstr[7]; +extern const char *rstr[2]; #define GAMEFILE_VERSION 3 #define MAX_GLINE_SIZE 1024 |