Enlightenment CVS committal

Author  : andrunko
Project : e17
Module  : libs/eet

Dir     : e17/libs/eet/src/lib


Modified Files:
        eet_utils.c 


Log Message:
Fixed bug on maemo.

somehow char is always treated as unsigned char, causing if (sign < 0)
to always return false.

===================================================================
RCS file: /cvs/e/e17/libs/eet/src/lib/eet_utils.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -3 -r1.5 -r1.6
--- eet_utils.c 29 Sep 2007 09:13:22 -0000      1.5
+++ eet_utils.c 2 Oct 2007 22:53:00 -0000       1.6
@@ -62,7 +62,7 @@
    long long   mantisse;
    long        exponent;
    int         nbr_decimals;
-   char        sign;
+   int         sign;
 
    str = src;
    sign = +1;



-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to