winebuild: Add a couple of missing indentations in the generated asm files

Dmitry Timoshkov dmitry at codeweavers.com
Wed Jan 23 02:28:54 CST 2008


Hello,

Changelog:
    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") );
-- 
1.5.3.8






More information about the wine-patches mailing list