You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by an...@apache.org on 2017/05/17 09:55:44 UTC

[28/43] incubator-mynewt-core git commit: bletiny: Fix printing uuid

bletiny: Fix printing uuid


Project: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/commit/652b4590
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/652b4590
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/652b4590

Branch: refs/heads/bluetooth5
Commit: 652b4590e589b595484958bed023704a8b6bdf62
Parents: f051851
Author: Łukasz Rymanowski <lu...@codecoup.pl>
Authored: Tue May 9 10:44:48 2017 +0200
Committer: Łukasz Rymanowski <lu...@codecoup.pl>
Committed: Thu May 11 14:16:39 2017 +0200

----------------------------------------------------------------------
 apps/bletiny/src/misc.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/652b4590/apps/bletiny/src/misc.c
----------------------------------------------------------------------
diff --git a/apps/bletiny/src/misc.c b/apps/bletiny/src/misc.c
index d39016b..9914bfe 100644
--- a/apps/bletiny/src/misc.c
+++ b/apps/bletiny/src/misc.c
@@ -70,7 +70,7 @@ print_uuid(const ble_uuid_t *uuid)
 
     ble_uuid_to_str(uuid, buf);
 
-    console_printf(buf);
+    console_printf("%s", buf);
 }
 
 int