diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-02-04 10:24:23 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-02-04 10:24:23 +0000 |
commit | 9c95ebcbe70bbf122b833cfe7750f5f019c08c55 (patch) | |
tree | 2cf139f393376614e948ca0b2066dbcdeb65ccca /ares | |
parent | 3a4ed71b8833ee87101775fe3909c108fd066dc0 (diff) |
fixed "comparison between signed and unsigned" complaints
Diffstat (limited to 'ares')
-rw-r--r-- | ares/adig.c | 4 |
1 files changed, 2 insertions, 2 deletions
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. */ |