From b184739f03cf928d3ea1907278aa02bb9010890a Mon Sep 17 00:00:00 2001 From: Jeff Teunissen Date: Fri, 24 Dec 2010 05:09:14 -0500 Subject: [PATCH] Use qfcc's new unsigned constant qualifier for UINT_MAX --- ruamoko/include/runtime.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruamoko/include/runtime.h b/ruamoko/include/runtime.h index 3ace8e4a7..2055ea222 100644 --- a/ruamoko/include/runtime.h +++ b/ruamoko/include/runtime.h @@ -4,7 +4,7 @@ #define INT_MAX 2147483648 #define INT_MIN (-INT_MAX - 1) -#define UINT_MAX 4294967295 +#define UINT_MAX 4294967295U enum { NotFound = INT_MAX ///< A value indicating a requested item can't be found.