widl: Fix 64bit warning.

This commit is contained in:
Kevin Koltzau 2006-02-22 13:52:53 -05:00 committed by Alexandre Julliard
parent 77da4fc5b5
commit a8b209752f
1 changed files with 1 additions and 1 deletions

View File

@ -1586,7 +1586,7 @@ size_t get_size_procformatstring_var(const var_t *var)
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;
}