Fixed bug on maemo.

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


SVN revision: 31939
This commit is contained in:
andrunko 2007-10-02 22:53:00 +00:00 committed by andrunko
parent 9432a9ef47
commit 24eea4e7a7
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ _eet_string_to_double_convert(const char *src, long long *m, long *e)
long long mantisse;
long exponent;
int nbr_decimals;
char sign;
int sign;
str = src;
sign = +1;