Ensure that config options hidden by r6054 have defaults, and fix MALLOCDBG()

Signed-off-by: Peter Stuge <peter@stuge.se>
Acked-by: Peter Stuge <peter@stuge.se>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6055 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/src/lib/malloc.c b/src/lib/malloc.c
index ac038ec..3cedc8f 100644
--- a/src/lib/malloc.c
+++ b/src/lib/malloc.c
@@ -4,7 +4,7 @@
 #if CONFIG_DEBUG_MALLOC
 #define MALLOCDBG(x...) printk(BIOS_SPEW, x)
 #else
-#define MALLOCDBG(x)
+#define MALLOCDBG(x...)
 #endif
 
 extern unsigned char _heap, _eheap;