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

Fix a printf-format mismatch for OS/X

parent 7b00bfa7
......@@ -121,8 +121,8 @@ VFP_Close(struct vfp_ctx *vc)
VTAILQ_FOREACH(vfe, &vc->vfp, list) {
if(vfe->vfp->fini != NULL)
vfe->vfp->fini(vc, vfe);
VSLb(vc->wrk->vsl, SLT_VfpAcct, "%s %ju %ju",
vfe->vfp->name, vfe->calls, vfe->bytes_out);
VSLb(vc->wrk->vsl, SLT_VfpAcct, "%s %ju %ju", vfe->vfp->name,
(uintmax_t)vfe->calls, (uintmax_t)vfe->bytes_out);
}
}
......
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