Add parens around truth value to quiet compiler warnings.

SVN revision: 19367
This commit is contained in:
Christopher Michael 2005-12-29 14:00:00 +00:00
parent 8f83193d0d
commit a928a79d88
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ _e_intl_language_path_find(char *language)
char *file;
ecore_list_goto_first(files);
while (file = ecore_list_next(files))
while ((file = ecore_list_next(files)) != NULL)
{
/* Match canonicalized locale against each possible search */
for (next_search = search_list ; next_search && !found ; next_search = next_search->next)