Commit bad36875 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

winedump: Fix incorrect alignment.

parent 7b5e8ef1
...@@ -1161,7 +1161,7 @@ BOOL codeview_dump_types_from_block(const void* table, unsigned long len) ...@@ -1161,7 +1161,7 @@ BOOL codeview_dump_types_from_block(const void* table, unsigned long len)
codeview_dump_one_type(curr_type, type); codeview_dump_one_type(curr_type, type);
curr_type++; curr_type++;
ptr += (type->generic.len + 2 + 3) & ~3; ptr += type->generic.len + 2;
} }
return TRUE; return TRUE;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment