From 190d0acef749f8be35a934b71c0bbaf326c1ba34 Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Fri, 9 Apr 2010 11:14:56 +0000 Subject: [PATCH] asm.h: fix definition of HEX macro svn path=/trunk/; revision=46786 --- reactos/include/reactos/asm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/reactos/asm.h b/reactos/include/reactos/asm.h index 30afca482a0..f60a37c79ef 100644 --- a/reactos/include/reactos/asm.h +++ b/reactos/include/reactos/asm.h @@ -73,7 +73,7 @@ ENDM .altmacro /* Hex numbers need to be in 0x1AB format */ -#define HEX(x) 0x##x +#define HEX(y) 0x##y /* Macro values need to be marked */ #define VAL(x) \x