Avoid compiler error for uninitialized value

Fixes Cogl compilation on build.gnome.org.
This commit is contained in:
Emmanuele Bassi 2015-06-10 18:41:49 +01:00
parent c013165e41
commit 0ad995746a

View File

@ -473,7 +473,7 @@ parse_argument (const char *string, /* original user string */
const char *error_string = NULL;
ParserArgState state = PARSER_ARG_STATE_START;
CoglBool parsing_factor = FALSE;
CoglBool implicit_factor_brace;
CoglBool implicit_factor_brace = FALSE;
arg->source.is_zero = FALSE;
arg->source.info = NULL;