From 727abf64e76efce9867f8906c233e08a28ac0fb2 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Mon, 24 Aug 2020 21:30:14 +0200 Subject: WIP: commit changed files --- sysdep/unix/io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sysdep/unix/io.c') diff --git a/sysdep/unix/io.c b/sysdep/unix/io.c index a31546ee..67e0f50a 100644 --- a/sysdep/unix/io.c +++ b/sysdep/unix/io.c @@ -1526,7 +1526,7 @@ static void hexdump(const char *data, socklen_t size) { char buf[1024]=""; - for (int i = 0; i < size; i++) + for (unsigned int i = 0; i < size; i++) { sprintf(buf + i*3, "%02x ", data[i]); } -- cgit v1.2.3