From cf94095eb7fb8a10828354a381b7ff7776397f5d Mon Sep 17 00:00:00 2001 From: Dmitry Timoshkov Date: Wed, 23 Jan 2008 16:28:54 +0800 Subject: [PATCH] winebuild: Add a couple of missing indentations in the generated asm files. --- tools/winebuild/spec16.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/winebuild/spec16.c b/tools/winebuild/spec16.c index dc86b1b40ae..f5be830f9d5 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") );