Simplify if clause.

There is no need for an else here, as the return is the last
instruction.

By: Raphael Kubo da Costa <kubo@profusion.mobi>



SVN revision: 53272
This commit is contained in:
Lucas De Marchi 2010-10-11 19:11:54 +00:00
parent c468b8c64b
commit bd92321ff1
1 changed files with 1 additions and 2 deletions

View File

@ -915,9 +915,8 @@ ecore_con_url_ftp_upload(Ecore_Con_Url *url_con, const char *filename,
return _ecore_con_url_perform(url_con);
}
else
return EINA_FALSE;
return EINA_FALSE;
#else
return EINA_FALSE;
(void)url_con;