diff options
author | Emmanuele Bassi <ebassi@gnome.org> | 2013-08-21 12:08:44 +0100 |
---|---|---|
committer | Emmanuele Bassi <ebassi@gnome.org> | 2013-08-21 12:16:48 +0100 |
commit | 361e427316cc50b52e4b8f0a71a2b29d1a02ed36 (patch) | |
tree | 61908ae37014b40d0e5a7f6b9f31b98d2535f49b /json-glib/json-path.c | |
parent | 6c3f870f10465602c2570e0ba3d2311587437977 (diff) | |
download | json-glib-361e427316cc50b52e4b8f0a71a2b29d1a02ed36.tar.gz |
path: Remove unused variable
Diffstat (limited to 'json-glib/json-path.c')
-rw-r--r-- | json-glib/json-path.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/json-glib/json-path.c b/json-glib/json-path.c index 6f83c90..ed36ac1 100644 --- a/json-glib/json-path.c +++ b/json-glib/json-path.c @@ -417,7 +417,7 @@ json_path_compile (JsonPath *path, { const char *p, *end_p; PathNode *root = NULL; - GList *nodes, *l; + GList *nodes; p = expression; |