widl: Fix alignment check for struct members format string.

This commit is contained in:
Alexandre Julliard 2007-01-24 20:08:50 +01:00
parent 8996c79d83
commit 4f106ca398
1 changed files with 1 additions and 1 deletions

View File

@ -1051,7 +1051,7 @@ static size_t write_struct_members(FILE *file, const type_t *type)
error("Unsupported member type 0x%x\n", rtype);
}
if (typestring_size % 1)
if (!(typestring_size % 2))
{
print_file(file, 2, "0x%x,\t\t/* FC_PAD */\n", RPC_FC_PAD);
typestring_size++;