mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
make array one large to hold word whose len is == max
This commit is contained in:
parent
b86330c71f
commit
872ebe68f4
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ typedef struct _IndexData {
|
||||||
} IndexData;
|
} IndexData;
|
||||||
|
|
||||||
typedef struct _LengthsArray {
|
typedef struct _LengthsArray {
|
||||||
XP_U32 lens[MAX_COLS_DICT];
|
XP_U32 lens[MAX_COLS_DICT+1];
|
||||||
} LengthsArray;
|
} LengthsArray;
|
||||||
|
|
||||||
void dict_initIter( DictIter* iter, const DictionaryCtxt* dict,
|
void dict_initIter( DictIter* iter, const DictionaryCtxt* dict,
|
||||||
|
|
Loading…
Reference in a new issue