From f895b8f6b775a1d8ffa7ad72fa13641783705479 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 5 Feb 2014 15:49:53 -0800 Subject: [PATCH] Correct value for false --- json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/json.c b/json.c index eb59839..c5b7cf6 100644 --- a/json.c +++ b/json.c @@ -93,6 +93,6 @@ json_object *parse(FILE *f, json_object *current) { json_error("misspelled false"); } - return new_object(JSON_TRUE, current); + return new_object(JSON_FALSE, current); } }