From 2a8aee133aeec8aef931c912a92eafac6b11a95e Mon Sep 17 00:00:00 2001 From: Andrew Boie Date: Thu, 18 Aug 2016 13:02:49 -0700 Subject: [PATCH] tests: bluetooth: fix incorrect printk() usage Change-Id: I9493fddf9d7d1120ae54a58673835c64d2042188 Signed-off-by: Andrew Boie --- tests/bluetooth/shell/src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/bluetooth/shell/src/main.c b/tests/bluetooth/shell/src/main.c index f1bde7ccc64..dc399503894 100644 --- a/tests/bluetooth/shell/src/main.c +++ b/tests/bluetooth/shell/src/main.c @@ -885,7 +885,7 @@ static int cmd_gatt_mread(int argc, char *argv[]) } if (argc - 1 > ARRAY_SIZE(h)) { - printk("Enter max %u handle items to read\n", ARRAY_SIZE(h)); + printk("Enter max %lu handle items to read\n", ARRAY_SIZE(h)); return 0; }