aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2005-11-23 09:10:00 +0000
committerDaniel Stenberg <daniel@haxx.se>2005-11-23 09:10:00 +0000
commit599d9642ca92a8f9b6feaef20844c1ef4f41dbcc (patch)
tree82f7def9e506323265848e3d5cf9b6b1302dc462 /src/main.c
parent0264faaa4e3679e1c38f4cbdc860b18f68f2efe7 (diff)
Yang Tse fixed MSVC 6.0 warnings
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 568611474..ecc78001d 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1944,7 +1944,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
nextarg,
&config->httppost,
&config->last_post,
- subletter=='s')) /* 's' means literal string */
+ (bool) (subletter=='s'))) /* 's' means literal string */
return PARAM_BAD_USE;
if(SetHTTPrequest(config, HTTPREQ_POST, &config->httpreq))
return PARAM_BAD_USE;