From f8700f776e4457614beefa4245a6a895344a355d Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 7 Apr 1997 21:33:28 +0000 Subject: corrected printf specifications and added casts as necessary to eliminate warnings. --- c/src/tests/sptests/sp25/system.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'c/src/tests/sptests/sp25/system.h') diff --git a/c/src/tests/sptests/sp25/system.h b/c/src/tests/sptests/sp25/system.h index 9a700cfa59..aff4bf0abf 100644 --- a/c/src/tests/sptests/sp25/system.h +++ b/c/src/tests/sptests/sp25/system.h @@ -51,6 +51,7 @@ TEST_EXTERN rtems_unsigned8 Area_1[64000] CPU_STRUCTURE_ALIGNMENT; #define BASE_PRIORITY 140 #define Put_address_from_area_1( _to_be_printed ) \ - printf( "0x%08lx", ((rtems_unsigned8 *)(_to_be_printed)) - Area_1 ) + printf( "0x%08lx", \ + (unsigned long) ((rtems_unsigned8 *)(_to_be_printed) - Area_1 ) ) /* end of include file */ -- cgit v1.2.3