From f8143ed773681d4176d8aa97bf1faf1ccec1c994 Mon Sep 17 00:00:00 2001 From: Takanori Watanabe Date: Thu, 28 May 2020 13:48:33 +0000 Subject: [PATCH] Fix connection event message string (n->\n) PR: 246664 Submitted by: Marc Veldman (marc@bumblngdork.com) Reported by: Jose Luis Duran (jlduran@gmail.com) --- usr.sbin/bluetooth/hccontrol/le.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.sbin/bluetooth/hccontrol/le.c b/usr.sbin/bluetooth/hccontrol/le.c index 357a7210fedc..2bfa5b1b089a 100644 --- a/usr.sbin/bluetooth/hccontrol/le.c +++ b/usr.sbin/bluetooth/hccontrol/le.c @@ -1078,7 +1078,7 @@ static void handle_le_connection_event(ng_hci_event_pkt_t* e, bool verbose) "Supervision timeout: %dms\n", 10 * le16toh(conn_event->supervision_timeout)); fprintf(stdout, - "Master clock accuracy: %sn", + "Master clock accuracy: %s\n", hci_mc_accuracy2str( conn_event->master_clock_accuracy)); }