mirror of
https://github.com/curl/curl.git
synced 2026-07-31 23:38:02 +03:00
made more pointers unsigned, as they were mostly used passed in to functions
that assume them to be unsigned. Stops compiler warnings.
This commit is contained in:
parent
b7fda8ec73
commit
a7b5045598
1 changed files with 3 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue