Kurt Lidl
2012-06-25 20:16:09 UTC
I think the following minor whitespace nit ought to fixed:
diff -r fc2815c71e10 arch/i386/code.c
--- a/arch/i386/code.c Fri Jun 22 07:03:58 2012 +0000
+++ b/arch/i386/code.c Mon Jun 25 16:14:36 2012 -0400
@@ -88,7 +88,7 @@
if ((name = sp->soname) == NULL)
name = exname(sp->sname);
if (sp->sclass == EXTDEF) {
- printf(" .globl %s\n", name);
+ printf("\t.globl %s\n", name);
#if defined(ELFABI)
printf("\t.type %s,@%s\n", name,
ISFTN(sp->stype)? "function" : "object");
-Kurt
diff -r fc2815c71e10 arch/i386/code.c
--- a/arch/i386/code.c Fri Jun 22 07:03:58 2012 +0000
+++ b/arch/i386/code.c Mon Jun 25 16:14:36 2012 -0400
@@ -88,7 +88,7 @@
if ((name = sp->soname) == NULL)
name = exname(sp->sname);
if (sp->sclass == EXTDEF) {
- printf(" .globl %s\n", name);
+ printf("\t.globl %s\n", name);
#if defined(ELFABI)
printf("\t.type %s,@%s\n", name,
ISFTN(sp->stype)? "function" : "object");
-Kurt