public inbox for linux-bluetooth@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH BlueZ] mpris-proxy: Fix missing line returns
@ 2025-02-04 15:50 Frédéric Danis
  2025-02-04 17:12 ` [BlueZ] " bluez.test.bot
  2025-02-04 22:50 ` [PATCH BlueZ] " patchwork-bot+bluetooth
  0 siblings, 2 replies; 3+ messages in thread
From: Frédéric Danis @ 2025-02-04 15:50 UTC (permalink / raw)
  To: linux-bluetooth

---
 tools/mpris-proxy.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

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;
 	}
-- 
2.43.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-02-04 22:50 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-02-04 15:50 [PATCH BlueZ] mpris-proxy: Fix missing line returns Frédéric Danis
2025-02-04 17:12 ` [BlueZ] " bluez.test.bot
2025-02-04 22:50 ` [PATCH BlueZ] " patchwork-bot+bluetooth

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox