Commit 646d185e authored by Rogier 'DocWilco' Mulhuijzen's avatar Rogier 'DocWilco' Mulhuijzen Committed by Tollef Fog Heen

Fixup printf format on 32bit platforms

parent 877f011e
......@@ -163,14 +163,14 @@ WRW_Flush(struct worker *wrk)
cache_param->send_timeout) {
WSL(wrk, SLT_Debug, *wrw->wfd,
"Hit total send timeout, "
"wrote = %ld/%ld; not retrying",
"wrote = %zd/%zd; not retrying",
i, wrw->liov);
i = -1;
break;
}
WSL(wrk, SLT_Debug, *wrw->wfd,
"Hit send timeout, wrote = %ld/%ld; retrying",
"Hit send timeout, wrote = %zd/%zd; retrying",
i, wrw->liov);
wrw_prune(wrw, i);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment