diff src/libm/s_floor.c @ 2765:f55c87ae336b

Final merge of Google Summer of Code 2008 work... Bring SDL to iPhone and iPod Touch by Holmes Futrell, mentored by Sam Lantinga
author Sam Lantinga <slouken@libsdl.org>
date Sat, 04 Oct 2008 06:46:59 +0000
parents 02aa80d7905f
children dc1eb82ffdaa
line wrap: on
line diff
--- a/src/libm/s_floor.c	Wed Sep 17 08:24:51 2008 +0000
+++ b/src/libm/s_floor.c	Sat Oct 04 06:46:59 2008 +0000
@@ -81,7 +81,7 @@
                     i0 += 1;
                 else {
                     j = i1 + (1 << (52 - j0));
-                    if (j < (u_int32_t)i1)
+                    if (j < (u_int32_t) i1)
                         i0 += 1;        /* got a carry */
                     i1 = j;
                 }