summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--testsuites/sptests/sp63/init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuites/sptests/sp63/init.c b/testsuites/sptests/sp63/init.c
index 798c038d77..9e8bb668ba 100644
--- a/testsuites/sptests/sp63/init.c
+++ b/testsuites/sptests/sp63/init.c
@@ -33,7 +33,7 @@ void test_case_one(void)
assert( heap_size );
puts( "Init - _Heap_Allocate - too large size (overflow)- not OK");
- ptr1 = _Heap_Allocate( &Heap, 0xffffffff );
+ ptr1 = _Heap_Allocate( &Heap, UINTPTR_MAX );
assert( !ptr1 );
puts( "Init - _Heap_Allocate_aligned - OK");