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

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2019-02-18 22:55:34 +01:00
parent 5e86cc0a8f
commit 39698f5468
1 changed files with 1 additions and 1 deletions

View File

@ -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 );
}