Kevin Koltzau : widl: Fix 64bit warning.

Alexandre Julliard julliard at wine.codeweavers.com
Wed Feb 22 15:30:28 CST 2006


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

Author: Kevin Koltzau <kevin at plop.org>
Date:   Wed Feb 22 13:52:53 2006 -0500

widl: Fix 64bit warning.

---

 tools/widl/typegen.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/tools/widl/typegen.c b/tools/widl/typegen.c
index acde725..d9b722c 100644
--- a/tools/widl/typegen.c
+++ b/tools/widl/typegen.c
@@ -1586,7 +1586,7 @@ size_t get_size_procformatstring_var(con
 
 size_t get_size_typeformatstring_var(const var_t *var)
 {
-    unsigned int type_offset = 0;
+    size_t type_offset = 0;
     write_typeformatstring_var(NULL, 0, var, &type_offset);
     return type_offset;
 }




More information about the wine-cvs mailing list