1
1

Revert the last patch. Still some warning should be issued on ia32 architectures. Looking for a fix.

This commit was SVN r17745.
Этот коммит содержится в:
Aurelien Bouteiller 2008-03-05 17:20:11 +00:00
родитель 4dd5683715
Коммит c280b81e40

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

@ -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