efl/evas: silent warning.

count is type 'int', but used as unsigned it (always > 0), however gcc
can't understand that and is complaining that 'check' could be used
without being initialized... which is false. Make the test != 0 to
silent gcc and make code as correct as before.




SVN revision: 82369
This commit is contained in:
Gustavo Sverzut Barbieri 2013-01-07 22:46:01 +00:00
parent 5286e5bfe0
commit 3c7fddb78d
1 changed files with 1 additions and 1 deletions

View File

@ -255,7 +255,7 @@ evas_async_events_put(const void *target, Evas_Callback_Type type, void *event_i
evas_cache_image_wakeup();
if ((count > 0) || (check == sizeof (int)))
if ((count != 0) || (check == sizeof (int)))
return EINA_TRUE;
switch (errno)