summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2015-06-10 18:41:49 +0100
committerEmmanuele Bassi <ebassi@gnome.org>2015-06-10 18:42:39 +0100
commit0ad995746a32cce5709d718442c10b3b9ba1edee (patch)
treecdf5399a1da5a5765a73e3a23cea25eb7605836c
parentc013165e413788bd9ccf3d5044c9988b1a854fd3 (diff)
downloadcogl-0ad995746a32cce5709d718442c10b3b9ba1edee.tar.gz
Avoid compiler error for uninitialized value
Fixes Cogl compilation on build.gnome.org.
-rw-r--r--cogl/cogl-blend-string.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cogl/cogl-blend-string.c b/cogl/cogl-blend-string.c
index 16cb3ab5..5d876bfd 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;