Commit 39698f54 authored by Alexandre Julliard's avatar Alexandre Julliard

winebuild: Align resource data to dword boundaries even on 64-bit.

parent 5e86cc0a
......@@ -492,7 +492,7 @@ void output_resources( DLLSPEC *spec )
for (i = 0, res = spec->resources; i < spec->nb_resources; i++, res++)
{
output( "\n\t.align %d\n", get_alignment(get_ptr_size()) );
output( "\n\t.align %d\n", get_alignment(4) );
output( ".L__wine_spec_res_%d:\n", i );
dump_res_data( res );
}
......
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