Warning fixes for jerry-libm

JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
This commit is contained in:
László Langó
2016-05-12 14:24:29 +02:00
parent 953e45f266
commit 2d7f1d1070
3 changed files with 2 additions and 17 deletions
+1 -1
View File
@@ -79,7 +79,7 @@ atan2 (double y, double x)
{
return x + y;
}
if ((hx - 0x3ff00000 | lx) == 0) /* x = 1.0 */
if (((hx - 0x3ff00000) | lx) == 0) /* x = 1.0 */
{
return atan (y);
}