mirror of
https://github.com/curl/curl.git
synced 2026-05-19 08:56:20 +03:00
fix compiler warning: enumerated type mixed with another type
This commit is contained in:
parent
0546d448ce
commit
5ae6db321f
1 changed files with 2 additions and 2 deletions
|
|
@ -4065,8 +4065,8 @@ output_expected(const char* url, const char* uploadfile)
|
|||
return FALSE; /* non-HTTP upload, probably no output should be expected */
|
||||
}
|
||||
|
||||
#define my_setopt(x,y,z) _my_setopt(x, 0, config, #y, y, z)
|
||||
#define my_setopt_str(x,y,z) _my_setopt(x, 1, config, #y, y, z)
|
||||
#define my_setopt(x,y,z) _my_setopt(x, FALSE, config, #y, y, z)
|
||||
#define my_setopt_str(x,y,z) _my_setopt(x, TRUE, config, #y, y, z)
|
||||
|
||||
static struct curl_slist *easycode;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue