From: Daniel Stenberg Date: Wed, 4 Feb 2004 10:24:23 +0000 (+0000) Subject: fixed "comparison between signed and unsigned" complaints X-Git-Tag: cares-1_1_0~350 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c95ebcbe70bbf122b833cfe7750f5f019c08c55;p=curl fixed "comparison between signed and unsigned" complaints --- diff --git a/ares/adig.c b/ares/adig.c index 706a1b26e..85cea0a11 100644 --- a/ares/adig.c +++ b/ares/adig.c @@ -282,8 +282,8 @@ int main(int argc, char **argv) static void callback(void *arg, int status, unsigned char *abuf, int alen) { char *name = (char *) arg, *errmem; - int id, qr, opcode, aa, tc, rd, ra, rcode, i; - unsigned int qdcount, ancount, nscount, arcount; + int id, qr, opcode, aa, tc, rd, ra, rcode; + unsigned int qdcount, ancount, nscount, arcount, i; const unsigned char *aptr; /* Display the query name if given. */