Skip to content
Snippets Groups Projects
Commit 952b5409 authored by Steve Holme's avatar Steve Holme
Browse files

tool_urlglob.c: Fixed compilation warning

An enumerated type is mixed with another type.
parent 5b8ae0a9
No related branches found
No related tags found
No related merge requests found
......@@ -324,7 +324,7 @@ static bool peek_ipv6(const char *str, size_t *skip)
}
else if(c == ']') {
*skip = i;
return colons >= 2;
return colons >= 2 ? TRUE : FALSE;
}
else {
return FALSE;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment