From 5fc069753aeb00e5e679b29f7a15c5a99debd8cc Mon Sep 17 00:00:00 2001 From: Ragnvald Maartmann-Moe IV Date: Tue, 25 Feb 2003 08:35:31 +0000 Subject: [PATCH] Warning fix (c might be used before initialization). Too tired to check if there's an actual bug there. Goodnight... --- libs/gib/gib_parse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/gib/gib_parse.c b/libs/gib/gib_parse.c index a083aabed..5fc425a45 100644 --- a/libs/gib/gib_parse.c +++ b/libs/gib/gib_parse.c @@ -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;