diff options
author | Martin Szulecki | 2020-06-08 23:49:45 +0200 |
---|---|---|
committer | Martin Szulecki | 2020-06-08 23:49:45 +0200 |
commit | 0a5547e97bfd0c0e95c4efb032bc2867cc5a60f0 (patch) | |
tree | 01b051007d0e87d3a7c43020457500acf9b17c48 /src/json_plist.c | |
parent | 60e69ac4759026ab564280b8406c7ac1c840b6b0 (diff) | |
download | idevicerestore-0a5547e97bfd0c0e95c4efb032bc2867cc5a60f0.tar.gz idevicerestore-0a5547e97bfd0c0e95c4efb032bc2867cc5a60f0.tar.bz2 |
Remove trailing whitespace errors from all files
Diffstat (limited to 'src/json_plist.c')
-rw-r--r-- | src/json_plist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/json_plist.c b/src/json_plist.c index e61e3cb..7bbead0 100644 --- a/src/json_plist.c +++ b/src/json_plist.c @@ -47,7 +47,7 @@ static plist_t parse_primitive(const char* js, jsmntok_t* tokens, int* index) fprintf(stderr, "%s: ERROR: token type != JSMN_PRIMITIVE?!\n", __func__); return NULL; } - plist_t val = NULL; + plist_t val = NULL; char* strval = get_string_value(js, tokens[*index]); if (strval[0] == 'f') { val = plist_new_bool(0); @@ -188,7 +188,7 @@ reparse: goto reparse; } } - + switch(r) { case JSMN_ERROR_NOMEM: fprintf(stderr, "%s: ERROR: Out of memory...\n", __func__); |