forked from Telodendria/Telodendria
Fix compile warnings on 32-bit systems.
This commit is contained in:
parent
129802fe94
commit
95a5f6f087
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ query(char *select, HashMap * json, int canonical)
|
||||||
{
|
{
|
||||||
size_t i;
|
size_t i;
|
||||||
|
|
||||||
if (sscanf(keyName + 1, "%lu", &i) == 1)
|
if (sscanf(keyName + 1, "%zu", &i) == 1)
|
||||||
{
|
{
|
||||||
JsonValueFree(ArrayDelete(JsonValueAsArray(val), i));
|
JsonValueFree(ArrayDelete(JsonValueAsArray(val), i));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue