diff options
author | Emmanuele Bassi <ebassi@openedhand.com> | 2007-10-16 19:42:05 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@openedhand.com> | 2007-10-16 19:42:05 +0100 |
commit | 70be36c97a8cd598af061eb9ac5a9a5852858682 (patch) | |
tree | d21ce5699e8175590691b1cd74df5dcb3dc6caba /json-glib/json-parser.c | |
parent | 57c39582818b8a6579fed327f5c6e2fc34e93694 (diff) | |
download | json-glib-70be36c97a8cd598af061eb9ac5a9a5852858682.tar.gz |
Fix compilation errors with extra maintainer CFLAGS
Diffstat (limited to 'json-glib/json-parser.c')
-rw-r--r-- | json-glib/json-parser.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/json-glib/json-parser.c b/json-glib/json-parser.c index 19ff5c8..ce83b36 100644 --- a/json-glib/json-parser.c +++ b/json-glib/json-parser.c @@ -701,11 +701,11 @@ json_parse_statement (JsonParser *parser, static void json_scanner_msg_handler (GScanner *scanner, gchar *message, - gboolean error) + gboolean is_error) { JsonParser *parser = scanner->user_data; - if (error) + if (is_error) { GError *error = NULL; |