summaryrefslogtreecommitdiff
path: root/tools/bluetooth-player.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2018-03-01 12:25:20 +0200
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2018-03-01 12:25:20 +0200
commitae589a34facec864f0c6e16726888b5f9f0e60cf (patch)
tree76e6ce26f8a6318e997c05589ca7e64cd2f33cd1 /tools/bluetooth-player.c
parent6e5598556586c38d5f8406072f2a7c49b8face93 (diff)
downloadbluez-ae589a34facec864f0c6e16726888b5f9f0e60cf.tar.gz
tools/bluetooth-player: Fix lines going beyond 80 columns
Diffstat (limited to 'tools/bluetooth-player.c')
-rw-r--r--tools/bluetooth-player.c3
1 files changed, 2 insertions, 1 deletions
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);
}