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

Alexandre Julliard julliard at wine.codeweavers.com
Wed Jun 14 06:51:10 CDT 2006


Module: wine
Branch: refs/heads/master
Commit: db78a84d4753cbae4e30b3eb7ca3376ba7c1799d
URL:    http://source.winehq.org/git/?p=wine.git;a=commit;h=db78a84d4753cbae4e30b3eb7ca3376ba7c1799d

Author: Alexandre Julliard <julliard at winehq.org>
Date:   Tue Jun 13 14:14:06 2006 +0200

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

---

 dlls/msvcrt/cppexcept.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/dlls/msvcrt/cppexcept.h b/dlls/msvcrt/cppexcept.h
index 9536847..8482cc7 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




More information about the wine-cvs mailing list