mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 23:32:09 +00:00
Warning fix (c might be used before initialization).
Too tired to check if there's an actual bug there. Goodnight...
This commit is contained in:
parent
020a9262f7
commit
5fc069753a
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ GIB_Parse_ErrorPos (void)
|
|||
static gib_tree_t *
|
||||
GIB_Parse_Tokens (const char *program, unsigned int *i, unsigned int pofs, gib_tree_t ** embedded)
|
||||
{
|
||||
char c, delim, *str;
|
||||
char c = 0, delim, *str;
|
||||
unsigned int tstart, start;
|
||||
gib_tree_t *nodes = 0, *cur, *new, *embs = 0, *tmp;
|
||||
gib_tree_t **node = &nodes;
|
||||
|
|
Loading…
Reference in a new issue