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

Fix for GCC warning

parent 83748716
......@@ -704,7 +704,7 @@ HTTP_Decode(struct http *to, uint8_t *fm)
if (*fm == '\0')
return (0);
to->hd[to->nhd].b = (void*)fm;
fm = strchr((void*)fm, '\0');
fm = (void*)strchr((void*)fm, '\0');
to->hd[to->nhd].e = (void*)fm;
fm++;
if (to->vsl != NULL)
......
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