From db78a84d4753cbae4e30b3eb7ca3376ba7c1799d Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 13 Jun 2006 14:14:06 +0200 Subject: [PATCH] msvcrt: Use unsigned int instead of size_t to avoid printf format warnings. --- dlls/msvcrt/cppexcept.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/msvcrt/cppexcept.h b/dlls/msvcrt/cppexcept.h index 9536847ca37..8482cc74022 100644 --- a/dlls/msvcrt/cppexcept.h +++ b/dlls/msvcrt/cppexcept.h @@ -106,7 +106,7 @@ typedef struct __cxx_type_info UINT flags; /* flags (see CLASS_* flags below) */ const type_info *type_info; /* C++ type info */ this_ptr_offsets offsets; /* offsets for computing the this pointer */ - size_t size; /* object size */ + unsigned int size; /* object size */ cxx_copy_ctor copy_ctor; /* copy constructor */ } cxx_type_info; #define CLASS_IS_SIMPLE_TYPE 1