From d7b995a4975f8d79a83029110edd8630751d55ae Mon Sep 17 00:00:00 2001 From: Ryan Norton Date: Sun, 5 Dec 2004 20:52:23 +0000 Subject: [PATCH] Fix overflow warnings (?) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30869 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/extended.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/extended.c b/src/common/extended.c index eb4089e4ab..1e9b9c7b8e 100644 --- a/src/common/extended.c +++ b/src/common/extended.c @@ -81,7 +81,7 @@ # define FloatToUnsigned(f) ((wxUint32)(f)) # define UnsignedToFloat(u) ((wxFloat64)(u)) #else /*applec*/ -# define FloatToUnsigned(f) ((wxUint32)((((wxInt32)((f) - 2147483648.0)) + 2147483647L) + 1)) +# define FloatToUnsigned(f) ((wxUint32)(((wxInt32)((f) - 2147483648.0)) + 2147483647L) + 1) # define UnsignedToFloat(u) (((wxFloat64)((wxInt32)((u) - 2147483647L - 1))) + 2147483648.0) #endif /*applec*/ -- 2.45.2