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

Flexelinting: int/unsigned consistency

parent 4ac43023
...@@ -520,7 +520,7 @@ pan_req(struct vsb *vsb, const struct req *req) ...@@ -520,7 +520,7 @@ pan_req(struct vsb *vsb, const struct req *req)
"err_code = %d, err_reason = %s,\n", req->err_code, "err_code = %d, err_reason = %s,\n", req->err_code,
req->err_reason ? req->err_reason : "(null)"); req->err_reason ? req->err_reason : "(null)");
VSB_printf(vsb, "restarts = %d, esi_level = %d,\n", VSB_printf(vsb, "restarts = %d, esi_level = %u,\n",
req->restarts, req->esi_level); req->restarts, req->esi_level);
if (req->sp != NULL) if (req->sp != NULL)
......
...@@ -651,14 +651,14 @@ struct VCL_conf { ...@@ -651,14 +651,14 @@ struct VCL_conf {
unsigned syntax; unsigned syntax;
VCL_BACKEND *default_director; VCL_BACKEND *default_director;
VCL_PROBE default_probe; VCL_PROBE default_probe;
unsigned nref; int nref;
const struct vrt_ref *ref; const struct vrt_ref *ref;
unsigned nsrc; int nsrc;
const char **srcname; const char **srcname;
const char **srcbody; const char **srcbody;
unsigned nvmod; int nvmod;
vcl_event_f *event_vcl; vcl_event_f *event_vcl;
""") """)
......
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