From: Jouni Malinen Date: Tue, 10 Nov 2009 09:30:11 +0000 (+0200) Subject: WPS: Fixed printf size_t warning on 32-bit builds X-Git-Tag: hostap_0_7_0~88 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efa6481438133f031dd55a7eb947a1cd9cc5a8d5;p=thirdparty%2Fhostap.git WPS: Fixed printf size_t warning on 32-bit builds --- diff --git a/src/wps/http_server.c b/src/wps/http_server.c index 04d3283ab..8a60c2c18 100644 --- a/src/wps/http_server.c +++ b/src/wps/http_server.c @@ -140,7 +140,8 @@ void http_request_send(struct http_request *req, struct wpabuf *resp) int res; wpa_printf(MSG_DEBUG, "HTTP: Send %lu byte response to %s:%d", - wpabuf_len(resp), inet_ntoa(req->cli.sin_addr), + (unsigned long) wpabuf_len(resp), + inet_ntoa(req->cli.sin_addr), ntohs(req->cli.sin_port)); res = send(req->fd, wpabuf_head(resp), wpabuf_len(resp), 0);