Hi,
I get the following warnings when compiling with -Wsign-compare:
json.c: In function ‘json_print_args’:
json.c:965:15: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (length == -1)
^~
jsonlint.c: In function ‘printchannel’:
jsonlint.c:48:10: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
if (ret != length)
^~
jsonlint.c: In function ‘process_file’:
jsonlint.c:96:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (i = 0; i < processed; i++) {
^
Hi,
I get the following warnings when compiling with
-Wsign-compare: