Correct value for false

This commit is contained in:
Eric Fischer 2014-02-05 15:49:53 -08:00
parent c913f0eec1
commit f895b8f6b7

2
json.c
View File

@ -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);
}
}