summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDag Wieers <dag@wieers.com>2008-10-15 02:34:57 +0200
committerH. Peter Anvin <hpa@zytor.com>2008-10-14 18:01:20 -0700
commitd564e93154eb291bcd477868f40fec1701a76e8b (patch)
tree8f7b945c7747e3c52704674965397e850033424e
parent6b65fb5529b8ce77567ad71df5fe9e660d0b4a03 (diff)
downloadsyslinux-d564e93154eb291bcd477868f40fec1701a76e8b.tar.gz
Older binutils wants parens around macros
Older versions of gcc/binutils apparently really want parentheses around macro arguments. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
-rw-r--r--com32/lib/sys/entry.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/com32/lib/sys/entry.S b/com32/lib/sys/entry.S
index d54cc502..ed5da95f 100644
--- a/com32/lib/sys/entry.S
+++ b/com32/lib/sys/entry.S
@@ -53,7 +53,7 @@ _start:
/* Copy COM32 invocation parameters */
leal 4(%esp),%esi # Argument list
movl $__com32,%edi
- movl $COM32_ARGS,%ecx
+ movl $(COM32_ARGS),%ecx
movl %esp,-4(%edi) # Save the initial stack ptr
cmpl (%esi),%ecx
jbe 1f