From d564e93154eb291bcd477868f40fec1701a76e8b Mon Sep 17 00:00:00 2001 From: Dag Wieers Date: Wed, 15 Oct 2008 02:34:57 +0200 Subject: Older binutils wants parens around macros Older versions of gcc/binutils apparently really want parentheses around macro arguments. Signed-off-by: H. Peter Anvin --- com32/lib/sys/entry.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.1