mirror of
https://github.com/curl/curl.git
synced 2026-07-23 17:37:17 +03:00
tool_urlglob.c: Fixed compilation warning
An enumerated type is mixed with another type.
This commit is contained in:
parent
5b8ae0a985
commit
952b54095a
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue