Commit 852fb462 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

fix printf format

parent 61efcba8
......@@ -151,7 +151,8 @@ pan_htc(struct vsb *vsb, const struct http_conn *htc)
htc->rxbuf_b, htc->rxbuf_e);
VSB_printf(vsb, "{pipeline_b, pipeline_e} = {%p, %p},\n",
htc->pipeline_b, htc->pipeline_e);
VSB_printf(vsb, "content_length = %jd,\n", htc->content_length);
VSB_printf(vsb, "content_length = %jd,\n",
(intmax_t)htc->content_length);
VSB_printf(vsb, "body_status = %s,\n",
body_status_2str(htc->body_status));
VSB_printf(vsb, "first_byte_timeout = %f,\n",
......
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