kore

Kore is a web application platform for writing scalable, concurrent web based processes in C or Python.
Commits | Files | Refs | README | LICENSE | git clone https://git.kore.io/kore.git

commit 40dddbc769ec88818ba7f5b83dcf868947e59304
parent e53de1cf4f481be0d149d878438220825a20e627
Author: Joris Vink <joris@coders.se>
Date:   Mon, 27 Apr 2020 09:07:37 +0200

whitespace

Diffstat:
src/json.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/json.c b/src/json.c @@ -643,7 +643,7 @@ json_parse_string(struct kore_json *json, struct kore_json_item *string) char *value; if ((value = json_get_string(json)) == NULL) - return (KORE_RESULT_ERROR); + return (KORE_RESULT_ERROR); string->type = KORE_JSON_TYPE_STRING; string->data.string = kore_strdup(value);