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

Printf format fix

parent fb4b6d69
......@@ -211,7 +211,7 @@ VCL_Panic(struct vsb *vsb, const struct vcl *vcl)
VSB_printf(vsb, "conf = NULL\n");
} else {
PAN_CheckMagic(vsb, vcl->conf, VCL_CONF_MAGIC);
VSB_printf(vsb, "syntax = \"%d\",\n", vcl->conf->syntax);
VSB_printf(vsb, "syntax = \"%u\",\n", vcl->conf->syntax);
VSB_printf(vsb, "srcname = {\n");
VSB_indent(vsb, 2);
for (i = 0; i < vcl->conf->nsrc; ++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