[syslinux] fix missing syslinux.cfg creation

* Issue was introduced with 299506056a
* Also improve StrArray definition
This commit is contained in:
Pete Batard 2014-01-22 01:28:25 +00:00
parent 3ae7ec4af5
commit 3c2873bbdc
5 changed files with 35 additions and 36 deletions

View file

@ -369,8 +369,7 @@ static __inline void *_reallocf(void *ptr, size_t size)
/* Basic String Array */
typedef struct {
// TODO: rename 'Table' to 'String'
char** Table;
char** String;
size_t Index; // Current array size
size_t Max; // Maximum array size
} StrArray;