diff options
author | Emmanuele Bassi <ebassi@openedhand.com> | 2007-11-13 11:20:34 +0000 |
---|---|---|
committer | Emmanuele Bassi <ebassi@openedhand.com> | 2007-11-13 11:20:34 +0000 |
commit | 03325e108e40d5deba979852ee402d7d6579ac81 (patch) | |
tree | 1237f66e4f1c11e3256af42e4fc867fcd43b5528 /json-glib/json-parser.c | |
parent | afeec9b40468d289351c78007b5122ff716bb977 (diff) | |
download | json-glib-03325e108e40d5deba979852ee402d7d6579ac81.tar.gz |
Fix variable shadowing for distcheck
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 1f73c45..60cc39a 100644 --- a/json-glib/json-parser.c +++ b/json-glib/json-parser.c @@ -852,11 +852,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; |