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

fixed the printf formatting after I changed the type of 'excess'

parent 4dcd606b
No related branches found
No related tags found
No related merge requests found
......@@ -1179,7 +1179,7 @@ CURLcode Curl_readwrite(struct connectdata *conn,
size_t excess = k->bytecount + nread - k->maxdownload;
if (excess > 0 && !k->ignorebody) {
infof(data,
"Rewinding stream by : %" FORMAT_OFF_T
"Rewinding stream by : %d"
" bytes on url %s (size = %" FORMAT_OFF_T
", maxdownload = %" FORMAT_OFF_T
", bytecount = %" FORMAT_OFF_T ", nread = %d)\n",
......
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