Commit e3862554 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix printf format for 32 bit archs

parent fb046f6e
......@@ -278,7 +278,7 @@ pan_wrk(const struct worker *wrk)
VSB_printf(pan_vsp, " worker = %p {\n", wrk);
VSB_printf(pan_vsp, " stack = {0x%jx -> 0x%jx}\n",
wrk->stack_start, wrk->stack_end);
(uintmax_t)wrk->stack_start, (uintmax_t)wrk->stack_end);
pan_ws(wrk->aws, 4);
m = wrk->cur_method;
......
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