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

Minor FlexeLinting

parent 035d982b
......@@ -82,7 +82,7 @@ hex_encode(const enum encoding enc, const enum case_e kase,
{
char *p = buf;
const char *alphabet = hex_alphabet[0];
int i;
size_t i;
AN(buf);
assert(enc == HEX);
......
......@@ -86,7 +86,7 @@ url_encode(const enum encoding enc, const enum case_e kase,
char *p = buf;
const char * const end = buf + buflen;
const char *alphabet = hex_alphabet[0];
int i;
size_t i;
AN(buf);
assert(enc == URL);
......
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