Hey,

in eet_lib.c, line 546, the use of ferror () is wrong. The doc says that 
it returns 0 on success, and a non zero value on failure, but no doc says 
that its returned value is an errno value.

I think that the correct code would be:

if (ferror(ef->fp))
   {
      switch (errno)
        {
        ....
        }
   }

Vincent

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
enlightenment-devel mailing list
enlightenment-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to