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

made more pointers unsigned, as they were mostly used passed in to functions

that assume them to be unsigned. Stops compiler warnings.
parent b7fda8ec
No related branches found
No related tags found
No related merge requests found
......@@ -56,7 +56,7 @@
struct send_request {
/* Remaining data to send */
const char *data;
const unsigned char *data;
int len;
/* Next request in queue */
......@@ -88,11 +88,11 @@ struct query {
time_t timeout;
/* Query buf with length at beginning, for TCP transmission */
char *tcpbuf;
unsigned char *tcpbuf;
int tcplen;
/* Arguments passed to ares_send() (qbuf points into tcpbuf) */
const char *qbuf;
const unsigned char *qbuf;
int qlen;
ares_callback callback;
void *arg;
......
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