From 02261ae4017a31232c18aeb77f4e59a82735dbdc Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Thu, 18 Aug 2016 13:03:09 -0700 Subject: [PATCH] tests: benchmark: fix incorrect printk() usage Change-Id: Id08d2e55399401244bfc52277415bc5d4167b288 Signed-off-by: Andrew Boie --- .../footprint/microkernel/src/microkernel_footprint.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/benchmark/footprint/microkernel/src/microkernel_footprint.c b/tests/benchmark/footprint/microkernel/src/microkernel_footprint.c index ce2f100ec76..32be3e8baf5 100644 --- a/tests/benchmark/footprint/microkernel/src/microkernel_footprint.c +++ b/tests/benchmark/footprint/microkernel/src/microkernel_footprint.c @@ -33,9 +33,9 @@ #define TEST_SOFT_INT 64 #ifdef TEST_max -#define MESSAGE "Running maximal microkernel configuration\n" +#define MESSAGE "Running maximal microkernel configuration %p\n" #else -#define MESSAGE "Running regular microkernel configuration\n" +#define MESSAGE "Running regular microkernel configuration %p\n" #endif /* TEST_max */ typedef void* (*pfunc) (void*);