Fix compile warnings on 32-bit systems.
Some checks failed
Compile Telodendria / Compile Telodendria (x86_64, freebsd-v14.0) (push) Failing after 14s
Compile Telodendria / Compile Telodendria (x86, freebsd-v14.0) (push) Failing after 17s
Compile Telodendria / Compile Telodendria (x86_64, alpine-v3.19) (push) Successful in 21s
Compile Telodendria / Compile Telodendria (x86, debian-v12.4) (push) Successful in 25s
Compile Telodendria / Compile Telodendria (x86, alpine-v3.19) (push) Successful in 24s
Compile Telodendria / Compile Telodendria (x86_64, debian-v12.4) (push) Successful in 26s
Compile Telodendria / Compile Telodendria (x86, netbsd-v9.3) (push) Successful in 26s
Compile Telodendria / Compile Telodendria (x86_64, netbsd-v9.3) (push) Successful in 30s
Compile Telodendria / Compile Telodendria (x86_64, openbsd-v7.4) (push) Successful in 37s
Some checks failed
Compile Telodendria / Compile Telodendria (x86_64, freebsd-v14.0) (push) Failing after 14s
Compile Telodendria / Compile Telodendria (x86, freebsd-v14.0) (push) Failing after 17s
Compile Telodendria / Compile Telodendria (x86_64, alpine-v3.19) (push) Successful in 21s
Compile Telodendria / Compile Telodendria (x86, debian-v12.4) (push) Successful in 25s
Compile Telodendria / Compile Telodendria (x86, alpine-v3.19) (push) Successful in 24s
Compile Telodendria / Compile Telodendria (x86_64, debian-v12.4) (push) Successful in 26s
Compile Telodendria / Compile Telodendria (x86, netbsd-v9.3) (push) Successful in 26s
Compile Telodendria / Compile Telodendria (x86_64, netbsd-v9.3) (push) Successful in 30s
Compile Telodendria / Compile Telodendria (x86_64, openbsd-v7.4) (push) Successful in 37s
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;
|
||||
|
||||
if (sscanf(keyName + 1, "%lu", &i) == 1)
|
||||
if (sscanf(keyName + 1, "%zu", &i) == 1)
|
||||
{
|
||||
JsonValueFree(ArrayDelete(JsonValueAsArray(val), i));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue