Skip to content
Snippets Groups Projects
Commit 9c95ebcb authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

fixed "comparison between signed and unsigned" complaints

parent 3a4ed71b
No related branches found
No related tags found
No related merge requests found
......@@ -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. */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment