added a cast to silent compiler warning with 64bit systems.

This commit is contained in:
Gunter Knauf
2009-08-06 13:23:00 +00:00
parent 97c8bc9757
commit 0cf6721898

View File

@@ -2347,7 +2347,7 @@ static ParameterError getparameter(char *flag, /* f or -long-flag */
postdata=strdup(""); postdata=strdup("");
} }
else { else {
char *enc = curl_easy_escape(config->easy, postdata, size); char *enc = curl_easy_escape(config->easy, postdata, (int)size);
free(postdata); /* no matter if it worked or not */ free(postdata); /* no matter if it worked or not */
if(enc) { if(enc) {
/* now make a string with the name from above and append the /* now make a string with the name from above and append the