mirror of
https://github.com/DaveGamble/cJSON.git
synced 2024-12-28 23:49:58 +08:00
cJSON.c: Remove unused cast
This commit is contained in:
parent
08a2ad3c59
commit
1f4044a707
2
cJSON.c
2
cJSON.c
@ -1007,7 +1007,7 @@ CJSON_PUBLIC(cJSON *) cJSON_ParseWithOpts(const char *value, const char **return
|
|||||||
}
|
}
|
||||||
|
|
||||||
buffer.content = (const unsigned char*)value;
|
buffer.content = (const unsigned char*)value;
|
||||||
buffer.length = strlen((const char*)value) + sizeof("");
|
buffer.length = strlen(value) + sizeof("");
|
||||||
buffer.offset = 0;
|
buffer.offset = 0;
|
||||||
buffer.hooks = global_hooks;
|
buffer.hooks = global_hooks;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user