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:
Ragnvald Maartmann-Moe IV 2003-02-25 08:35:31 +00:00
parent 020a9262f7
commit 5fc069753a
1 changed files with 1 additions and 1 deletions

View File

@ -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;