1
1

Try to blindly solve warning about size_t printf format, as I can't reproduce the warning on my machines.

This commit was SVN r17701.
Этот коммит содержится в:
Aurelien Bouteiller 2008-03-04 22:30:35 +00:00
родитель c3d0a81cd3
Коммит 284115208c

Просмотреть файл

@ -312,14 +312,14 @@ 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"
# elif SIZEOF_SIZE_T == SIZEOF_INT
# define PRIsize_t "u"
# endif
#endif
#endif
#endif /* OPAL_STDINT_H */