From f8482d99ef0aef511f16c860bc71899a955abf1a Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Thu, 18 Aug 2016 13:04:39 -0700 Subject: [PATCH] samples: ipm: fix incorrect printk() usage Change-Id: I276963e69fd0e3430d1f946b2062ed29fec5c03d Signed-off-by: Andrew Boie --- samples/ipm/ipm_demo_lmt/src/hello.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/ipm/ipm_demo_lmt/src/hello.c b/samples/ipm/ipm_demo_lmt/src/hello.c index 4826ad385b5..79e9308dd77 100644 --- a/samples/ipm/ipm_demo_lmt/src/hello.c +++ b/samples/ipm/ipm_demo_lmt/src/hello.c @@ -56,7 +56,7 @@ void message_source(struct device *ipm) { uint8_t counter = 0; - printk("sending messages for IPM device %x\n", ipm); + printk("sending messages for IPM device %p\n", ipm); while (1) { ipm_send(ipm, 1, counter++, dat1, 16);