aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2010-05-31 17:34:28 +0200
committerYang Tse <yangsita@gmail.com>2010-05-31 17:34:28 +0200
commit5ae6db321ff40fc5e00c0513f5393d57371c0120 (patch)
treebc5e201cedc59e7df18f73dbe9628a61493785c4 /src/main.c
parent0546d448ced64975a6b71ef4ee23650f5fc1e362 (diff)
fix compiler warning: enumerated type mixed with another type
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 8ee8f6897..4e0128cb7 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;