From 0ad995746a32cce5709d718442c10b3b9ba1edee Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Wed, 10 Jun 2015 18:41:49 +0100 Subject: [PATCH] Avoid compiler error for uninitialized value Fixes Cogl compilation on build.gnome.org. --- cogl/cogl-blend-string.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogl/cogl-blend-string.c b/cogl/cogl-blend-string.c index 16cb3ab58..5d876bfd8 100644 --- a/cogl/cogl-blend-string.c +++ b/cogl/cogl-blend-string.c @@ -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;