* eina: Fix atofp when exponent is negativ.

SVN revision: 44244
This commit is contained in:
Cedric BAIL 2009-12-07 13:08:16 +00:00
parent 1a9212d3b0
commit 759426ceda
1 changed files with 1 additions and 1 deletions

View File

@ -747,7 +747,7 @@ eina_convert_atofp(const char *src, int length, Eina_F32p32 *fp)
e += 32;
if (e > 0) *fp = m << e;
else *fp = m >> e;
else *fp = m >> -e;
return EINA_TRUE;
}