Module: wine Branch: master Commit: 39698f5468bd2b9e9e9fe3d10e587991238002ba URL: https://source.winehq.org/git/wine.git/?a=commit;h=39698f5468bd2b9e9e9fe3d10...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Feb 18 22:55:34 2019 +0100
winebuild: Align resource data to dword boundaries even on 64-bit.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
tools/winebuild/res32.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/winebuild/res32.c b/tools/winebuild/res32.c index 1686f56..d237782 100644 --- a/tools/winebuild/res32.c +++ b/tools/winebuild/res32.c @@ -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 ); }