Skip to content
Snippets Groups Projects
Commit f1320d67 authored by Guenter Knauf's avatar Guenter Knauf
Browse files

add cast to silent compiler warning with 64bit systems.

parent 68f7d5b8
No related branches found
No related tags found
No related merge requests found
......@@ -613,7 +613,7 @@ static int get_request(curl_socket_t sock, struct httprequest *req)
logmsg("Read %zd bytes", got);
req->offset += got;
req->offset += (int)got;
reqbuf[req->offset] = '\0';
if(ProcessRequest(req)) {
......
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