From ae589a34facec864f0c6e16726888b5f9f0e60cf Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Thu, 1 Mar 2018 12:25:20 +0200 Subject: [PATCH] tools/bluetooth-player: Fix lines going beyond 80 columns --- tools/bluetooth-player.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/bluetooth-player.c b/tools/bluetooth-player.c index 4eb3153e9..75650a722 100644 --- a/tools/bluetooth-player.c +++ b/tools/bluetooth-player.c @@ -485,7 +485,8 @@ static void print_player(GDBusProxy *proxy, const char *description) str = proxy_description(proxy, "Player", description); - bt_shell_printf("%s%s\n", str, default_player == proxy ? "[default]" : ""); + bt_shell_printf("%s%s\n", str, + default_player == proxy ? "[default]" : ""); g_free(str); } -- 2.47.3