mirror of
https://github.com/curl/curl.git
synced 2026-06-18 04:05:38 +03:00
fixed "comparison between signed and unsigned" complaints
This commit is contained in:
parent
3a4ed71b88
commit
9c95ebcbe7
1 changed files with 2 additions and 2 deletions
|
|
@ -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. */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue