WPS: Do not use void* in arithmetic
This is a C compiler extension and not needed, so replace with standard compliant way of calculating the pointer. Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
048edb1070
commit
11e5a49c28
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ static void http_client_tx_ready(int sock, void *eloop_ctx, void *sock_ctx)
|
|||
(unsigned long) wpabuf_len(c->req),
|
||||
(unsigned long) wpabuf_len(c->req) - c->req_pos);
|
||||
|
||||
res = send(c->sd, wpabuf_head(c->req) + c->req_pos,
|
||||
res = send(c->sd, wpabuf_head_u8(c->req) + c->req_pos,
|
||||
wpabuf_len(c->req) - c->req_pos, 0);
|
||||
if (res < 0) {
|
||||
wpa_printf(MSG_DEBUG, "HTTP: Failed to send buffer: %s",
|
||||
|
|
Loading…
Reference in a new issue