mirror of
https://github.com/brl/mutter.git
synced 2024-12-23 19:42:05 +00:00
Avoid compiler error for uninitialized value
Fixes Cogl compilation on build.gnome.org.
This commit is contained in:
parent
c013165e41
commit
0ad995746a
@ -473,7 +473,7 @@ parse_argument (const char *string, /* original user string */
|
|||||||
const char *error_string = NULL;
|
const char *error_string = NULL;
|
||||||
ParserArgState state = PARSER_ARG_STATE_START;
|
ParserArgState state = PARSER_ARG_STATE_START;
|
||||||
CoglBool parsing_factor = FALSE;
|
CoglBool parsing_factor = FALSE;
|
||||||
CoglBool implicit_factor_brace;
|
CoglBool implicit_factor_brace = FALSE;
|
||||||
|
|
||||||
arg->source.is_zero = FALSE;
|
arg->source.is_zero = FALSE;
|
||||||
arg->source.info = NULL;
|
arg->source.info = NULL;
|
||||||
|
Loading…
Reference in New Issue
Block a user