From 6e5598556586c38d5f8406072f2a7c49b8face93 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 1 Mar 2018 12:23:30 +0200 Subject: [PATCH] tools/obexctl: mesh: Fix lines going beyond 80 columns --- tools/obexctl.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/obexctl.c b/tools/obexctl.c index 9af2a925e..3360972bd 100644 --- a/tools/obexctl.c +++ b/tools/obexctl.c @@ -260,7 +260,8 @@ static void print_proxy(GDBusProxy *proxy, const char *title, str = proxy_description(proxy, title, description); - bt_shell_printf("%s%s\n", str, default_session == proxy ? "[default]" : ""); + bt_shell_printf("%s%s\n", str, + default_session == proxy ? "[default]" : ""); g_free(str); } -- 2.47.3