You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by st...@apache.org on 2016/07/28 00:18:57 UTC

[18/28] incubator-mynewt-core git commit: bletiny - add missing newline in console output.

bletiny - add missing newline in console output.


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/26320fa0
Tree: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/tree/26320fa0
Diff: http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/diff/26320fa0

Branch: refs/heads/sterly_refactor
Commit: 26320fa00282fbf7ed77e9cbcff017d5c78f40bc
Parents: 9a6dfbd
Author: Christopher Collins <cc...@apache.org>
Authored: Tue Jul 26 13:30:22 2016 -0700
Committer: Sterling Hughes <st...@apache.org>
Committed: Wed Jul 27 17:18:28 2016 -0700

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


http://git-wip-us.apache.org/repos/asf/incubator-mynewt-core/blob/26320fa0/apps/bletiny/src/main.c
----------------------------------------------------------------------
diff --git a/apps/bletiny/src/main.c b/apps/bletiny/src/main.c
index 75bf2f7..d8d7c5a 100755
--- a/apps/bletiny/src/main.c
+++ b/apps/bletiny/src/main.c
@@ -201,6 +201,7 @@ bletiny_print_adv_fields(const struct ble_hs_adv_fields *fields)
         console_printf("    name(%scomplete)=",
                        fields->name_is_complete ? "" : "in");
         console_write((char *)fields->name, fields->name_len);
+        console_printf("\n");
     }
 
     if (fields->tx_pwr_lvl_is_present) {