From 46f91797ecfbad6cfe81fe7803bb703536354913 Mon Sep 17 00:00:00 2001 From: Petri Lehtinen Date: Mon, 17 Jan 2011 15:51:29 +0200 Subject: [PATCH] Build cleanly with gcc's -Werror=declaration-after-statement flag --- src/load.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/load.c b/src/load.c index f05230b..731aced 100644 --- a/src/load.c +++ b/src/load.c @@ -805,10 +805,10 @@ json_t *json_loads(const char *string, size_t flags, json_error_t *error) { lex_t lex; json_t *result; - (void)flags; /* unused */ - string_data_t stream_data = {string, 0}; + (void)flags; /* unused */ + if(lex_init(&lex, string_get, string_eof, (void *)&stream_data)) return NULL;