From 6f3d2cdd006f5406c31ca475cb51558cea8c75f4 Mon Sep 17 00:00:00 2001 From: Tim Kientzle Date: Sun, 7 Apr 2013 05:40:49 +0000 Subject: [PATCH] Fix two broken macros. --- sys/boot/ficl/arm/sysdep.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/boot/ficl/arm/sysdep.h b/sys/boot/ficl/arm/sysdep.h index 3ae748e259c7..00718eedd35c 100644 --- a/sys/boot/ficl/arm/sysdep.h +++ b/sys/boot/ficl/arm/sysdep.h @@ -59,7 +59,7 @@ #include #if !defined IGNORE /* Macro to silence unused param warnings */ -#define IGNORE(x) &x +#define IGNORE(x) (void)(x) #endif /* @@ -406,7 +406,7 @@ void *ficlRealloc(void *p, size_t size); #if FICL_MULTITHREAD int ficlLockDictionary(short fLock); #else -#define ficlLockDictionary(x) 0 /* ignore */ +#define ficlLockDictionary(x) /* ignore */ #endif /*