From 9839799b505aae7a99907d71c4316b7b9b5b12f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Danis?= Date: Tue, 4 Feb 2025 16:50:25 +0100 Subject: [PATCH] mpris-proxy: Fix missing line returns --- 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 e5fc91fdb..d72fc45a3 100644 --- a/tools/mpris-proxy.c +++ b/tools/mpris-proxy.c @@ -1980,7 +1980,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; } @@ -1991,7 +1991,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; } @@ -2002,7 +2002,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; } @@ -2013,7 +2013,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; } @@ -2024,7 +2024,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.47.3