mirror of
https://github.com/curl/curl.git
synced 2026-07-24 03:57:17 +03:00
fix compiler warning
This commit is contained in:
parent
06c96d01d2
commit
bbefdf88fd
3 changed files with 8 additions and 7 deletions
|
|
@ -4073,7 +4073,8 @@ static void dumpeasycode(struct Configurable *config)
|
|||
|
||||
static bool stdin_upload(const char *uploadfile)
|
||||
{
|
||||
return curlx_strequal(uploadfile, "-") || curlx_strequal(uploadfile, ".");
|
||||
return (bool)(curlx_strequal(uploadfile, "-") ||
|
||||
curlx_strequal(uploadfile, "."));
|
||||
}
|
||||
|
||||
static char*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue