commit | a8b209752f65d403c1c24b5ddc141de23c4e237d | [log] [tgz] |
---|---|---|
author | Kevin Koltzau <kevin@plop.org> | Wed Feb 22 13:52:53 2006 -0500 |
committer | Alexandre Julliard <julliard@winehq.org> | Wed Feb 22 22:17:25 2006 +0100 |
tree | 3b3ef7955263558ac9be71351f14cea4c4dc3c34 | |
parent | 77da4fc5b55740957e78df8f8c4e438ef34b5186 [diff] |
widl: Fix 64bit warning.
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_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; }