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

Polish for flexelint

parent 5aa6fac4
......@@ -552,7 +552,7 @@ vmod_test_probe(VRT_CTX, VCL_PROBE probe, VCL_PROBE same)
VCL_INT
vmod_typesize(VRT_CTX, VCL_STRING s)
{
int i = 0;
size_t i = 0;
const char *p;
(void)ctx;
......@@ -570,5 +570,5 @@ vmod_typesize(VRT_CTX, VCL_STRING s)
default: return(-1);
}
}
return (i);
return ((VCL_INT)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