diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-11-23 09:10:00 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-11-23 09:10:00 +0000 |
commit | 599d9642ca92a8f9b6feaef20844c1ef4f41dbcc (patch) | |
tree | 82f7def9e506323265848e3d5cf9b6b1302dc462 /src | |
parent | 0264faaa4e3679e1c38f4cbdc860b18f68f2efe7 (diff) |
Yang Tse fixed MSVC 6.0 warnings
Diffstat (limited to 'src')
-rw-r--r-- | src/main.c | 2 |
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; |