summaryrefslogtreecommitdiff
path: root/samples/ipm
diff options
context:
space:
mode:
authorAndrew Boie <andrew.p.boie@intel.com>2016-08-18 13:04:39 -0700
committerAnas Nashif <anas.nashif@intel.com>2016-08-28 07:47:28 -0400
commitf8482d99ef0aef511f16c860bc71899a955abf1a (patch)
tree0516b0dfadebde938b06a8187f57cfe9a55da502 /samples/ipm
parent1f701a920fdfe49180faa88a7bbc9e8eeabb57a9 (diff)
samples: ipm: fix incorrect printk() usage
Change-Id: I276963e69fd0e3430d1f946b2062ed29fec5c03d Signed-off-by: Andrew Boie <andrew.p.boie@intel.com>
Diffstat (limited to 'samples/ipm')
-rw-r--r--samples/ipm/ipm_demo_lmt/src/hello.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/samples/ipm/ipm_demo_lmt/src/hello.c b/samples/ipm/ipm_demo_lmt/src/hello.c
index 4826ad385..79e9308dd 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);