the first clause implies the others

SVN revision: 27459
This commit is contained in:
rephorm 2006-12-15 05:33:24 +00:00 committed by rephorm
parent b848372508
commit 61136a5f30
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ ecore_desktop_ini_get(const char *file)
{
*c++ = '\0';
/* Strip preceeding blanks. Note that \n is treated differently from the other white space. */
while (((*c == ' ') || (*c == '\t')) && (*c != '\n') && (*c != '\0'))
while ((*c == ' ') || (*c == '\t'))
c++;
value = c;
/* Find end. */