Commit 4b7fc939 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Add a necessay cast

parent 72db3c42
......@@ -218,7 +218,7 @@ vbf_stp_fetchhdr(struct worker *wrk, struct busyobj *bo)
if (bo->ims_obj != NULL && bo->beresp->status == 304) {
bo->beresp->status = 200;
http_PrintfHeader(bo->beresp, "Content-Length: %jd",
bo->ims_obj->len);
(intmax_t)bo->ims_obj->len);
do_ims = 1;
} else
do_ims = 0;
......
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