msvcrt: Use unsigned int instead of size_t to avoid printf format warnings.

This commit is contained in:
Alexandre Julliard 2006-06-13 14:14:06 +02:00
parent dbd473ff79
commit db78a84d47
1 changed files with 1 additions and 1 deletions

View File

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