Module: wine Branch: master Commit: cf94095eb7fb8a10828354a381b7ff7776397f5d URL: http://source.winehq.org/git/wine.git/?a=commit;h=cf94095eb7fb8a10828354a381...
Author: Dmitry Timoshkov dmitry@codeweavers.com Date: Wed Jan 23 16:28:54 2008 +0800
winebuild: Add a couple of missing indentations in the generated asm files.
---
tools/winebuild/spec16.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/winebuild/spec16.c b/tools/winebuild/spec16.c index dc86b1b..f5be830 100644 --- a/tools/winebuild/spec16.c +++ b/tools/winebuild/spec16.c @@ -461,7 +461,7 @@ static void output_init_code( const DLLSPEC *spec, const char *header_name ) output( "\t.align 4\n" ); output( "\t%s\n", func_declaration(name) ); output( "%s:\n", name ); - output( "subl $4,%%esp\n" ); + output( "\tsubl $4,%%esp\n" ); if (UsePIC) { output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") ); @@ -485,7 +485,7 @@ static void output_init_code( const DLLSPEC *spec, const char *header_name ) output( "\t.align 4\n" ); output( "\t%s\n", func_declaration(name) ); output( "%s:\n", name ); - output( "subl $8,%%esp\n" ); + output( "\tsubl $8,%%esp\n" ); if (UsePIC) { output( "\tcall %s\n", asm_name("__wine_spec_get_pc_thunk_eax") );