From: Yang Tse Date: Mon, 31 May 2010 15:34:28 +0000 (+0200) Subject: fix compiler warning: enumerated type mixed with another type X-Git-Tag: upstream/7.37.1~5010 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5ae6db321ff40fc5e00c0513f5393d57371c0120;p=platform%2Fupstream%2Fcurl.git fix compiler warning: enumerated type mixed with another type --- diff --git a/src/main.c b/src/main.c index 8ee8f68..4e0128c 100644 --- a/src/main.c +++ b/src/main.c @@ -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;