From fd49408ed9a0250f085ff41bef1fe48423447245 Mon Sep 17 00:00:00 2001 From: Victor van den Elzen Date: Wed, 1 Oct 2008 13:16:26 +0200 Subject: Already aligned aligns should be 0 bytes, not %1. --- standard.mac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'standard.mac') diff --git a/standard.mac b/standard.mac index b3e4ae3a..0faa1876 100644 --- a/standard.mac +++ b/standard.mac @@ -66,13 +66,13 @@ __SECT__ %endmacro %imacro align 1-2+.nolist nop - times ((%1) - (($-$$) % (%1))) %2 + times (((%1) - (($-$$) % (%1))) % (%1)) %2 %endmacro %imacro alignb 1-2+.nolist %ifempty %2 - resb ((%1) - (($-$$) % (%1))) + resb (((%1) - (($-$$) % (%1))) % (%1)) %else - times ((%1) - (($-$$) % (%1))) %2 + times (((%1) - (($-$$) % (%1))) % (%1)) %2 %endif %endmacro -- cgit v1.2.1