Commit 6add727c authored by Sergey Lyubka's avatar Sergey Lyubka

%zu printf spec is not understood by MS compiler, changing it to %lu

parent 375950f6
......@@ -1420,7 +1420,7 @@ int mg_read(struct mg_connection *conn, void *buf, size_t len) {
assert((conn->content_len == -1 && conn->consumed_content == 0) ||
conn->consumed_content <= conn->content_len);
DEBUG_TRACE(("%p %zu %lld %lld", buf, len,
DEBUG_TRACE(("%p %lu %lld %lld", buf, (unsigned long) len,
conn->content_len, conn->consumed_content));
nread = 0;
if (conn->consumed_content < conn->content_len) {
......
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