diff mbox series

[BlueZ] mpris-proxy: Fix missing line returns

Message ID 20250204155025.96612-1-frederic.danis@collabora.com
State New
Headers show
Series [BlueZ] mpris-proxy: Fix missing line returns | expand

Commit Message

Frédéric Danis Feb. 4, 2025, 3:50 p.m. UTC
---
 tools/mpris-proxy.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
diff mbox series

Patch

diff --git a/tools/mpris-proxy.c b/tools/mpris-proxy.c
index b08733314..2774bcc1a 100644
--- a/tools/mpris-proxy.c
+++ b/tools/mpris-proxy.c
@@ -2132,7 +2132,7 @@  static void register_player(GDBusProxy *proxy)
 	player->conn = g_dbus_setup_private(DBUS_BUS_SESSION, player->bus_name,
 									NULL);
 	if (!player->conn) {
-		fprintf(stderr, "Could not register bus name %s",
+		fprintf(stderr, "Could not register bus name %s\n",
 							player->bus_name);
 		goto fail;
 	}
@@ -2143,7 +2143,7 @@  static void register_player(GDBusProxy *proxy)
 						NULL,
 						mpris_properties,
 						player, NULL)) {
-		fprintf(stderr, "Could not register interface %s",
+		fprintf(stderr, "Could not register interface %s\n",
 						MPRIS_INTERFACE);
 		goto fail;
 	}
@@ -2154,7 +2154,7 @@  static void register_player(GDBusProxy *proxy)
 						player_signals,
 						player_properties,
 						player, player_free)) {
-		fprintf(stderr, "Could not register interface %s",
+		fprintf(stderr, "Could not register interface %s\n",
 						MPRIS_PLAYER_INTERFACE);
 		goto fail;
 	}
@@ -2165,7 +2165,7 @@  static void register_player(GDBusProxy *proxy)
 						tracklist_signals,
 						tracklist_properties,
 						player, NULL)) {
-		fprintf(stderr, "Could not register interface %s",
+		fprintf(stderr, "Could not register interface %s\n",
 						MPRIS_TRACKLIST_INTERFACE);
 		goto fail;
 	}
@@ -2176,7 +2176,7 @@  static void register_player(GDBusProxy *proxy)
 						NULL,
 						playlist_properties,
 						player, NULL)) {
-		fprintf(stderr, "Could not register interface %s",
+		fprintf(stderr, "Could not register interface %s\n",
 						MPRIS_PLAYLISTS_INTERFACE);
 		goto fail;
 	}