<discomfitor> ecore_con_url.c: In function 'ecore_con_url_ftp_upload':

<discomfitor> ecore_con_url.c:963:14: warning: too few arguments for format
<rakuco> ah, missing a , filename there
<rakuco> can you commit that


SVN revision: 53334
This commit is contained in:
Mike Blumenkrantz 2010-10-13 03:04:53 +00:00
parent 900242104f
commit a880b29c6e
1 changed files with 1 additions and 1 deletions

View File

@ -960,7 +960,7 @@ ecore_con_url_ftp_upload(Ecore_Con_Url *url_con, const char *filename,
fd = fopen(filename, "rb");
if (!fd)
{
ERR("Could not open \"%s\" for FTP upload");
ERR("Could not open \"%s\" for FTP upload", filename);
return EINA_FALSE;
}
curl_easy_setopt(url_con->curl_easy, CURLOPT_READDATA, fd);