From c280b81e40a5bb8cef6228f6f9898099b4d0062c Mon Sep 17 00:00:00 2001 From: Aurelien Bouteiller Date: Wed, 5 Mar 2008 17:20:11 +0000 Subject: [PATCH] Revert the last patch. Still some warning should be issued on ia32 architectures. Looking for a fix. This commit was SVN r17745. --- opal/include/opal_stdint.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/opal/include/opal_stdint.h b/opal/include/opal_stdint.h index 10f098358c..be5f799d73 100644 --- a/opal/include/opal_stdint.h +++ b/opal/include/opal_stdint.h @@ -312,12 +312,12 @@ typedef unsigned long long uintptr_t; #ifndef PRIsize_t # if defined(ACCEPT_C99) # define PRIsize_t "zu" -# elif SIZEOF_SIZE_T == SIZEOF_INT -# define PRIsize_t "u" # elif SIZEOF_SIZE_T == SIZEOF_LONG # define PRIsize_t "lu" # elif SIZEOF_SIZE_T == SIZEOF_LONG_LONG # define PRIsize_t "llu" +# else +# define PRIsize_t "u" # endif #endif