Message ID | 20250204155025.96612-1-frederic.danis@collabora.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 9839799b505aae7a99907d71c4316b7b9b5b12f4 |
Headers | show |
Series | [BlueZ] mpris-proxy: Fix missing line returns | expand |
Context | Check | Description |
---|---|---|
tedd_an/pre-ci_am | success | Success |
tedd_an/BuildEll | success | Build ELL PASS |
tedd_an/BluezMake | success | Bluez Make PASS |
tedd_an/MakeCheck | success | Bluez Make Check PASS |
tedd_an/MakeDistcheck | success | Make Distcheck PASS |
tedd_an/CheckValgrind | success | Check Valgrind PASS |
tedd_an/CheckSmatch | success | CheckSparse PASS |
tedd_an/bluezmakeextell | success | Make External ELL PASS |
tedd_an/ScanBuild | success | Scan Build PASS |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=930487 ---Test result--- Test Summary: CheckPatch PENDING 0.26 seconds GitLint PENDING 0.30 seconds BuildEll PASS 20.30 seconds BluezMake PASS 1451.24 seconds MakeCheck PASS 13.42 seconds MakeDistcheck PASS 157.84 seconds CheckValgrind PASS 213.62 seconds CheckSmatch PASS 269.15 seconds bluezmakeextell PASS 97.76 seconds IncrementalBuild PENDING 0.34 seconds ScanBuild PASS 851.32 seconds Details ############################## Test: CheckPatch - PENDING Desc: Run checkpatch.pl script Output: ############################## Test: GitLint - PENDING Desc: Run gitlint Output: ############################## Test: IncrementalBuild - PENDING Desc: Incremental build with the patches in the series Output: --- Regards, Linux Bluetooth
Hello: This patch was applied to bluetooth/bluez.git (master) by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>: On Tue, 4 Feb 2025 16:50:25 +0100 you wrote: > --- > tools/mpris-proxy.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) Here is the summary with links: - [BlueZ] mpris-proxy: Fix missing line returns https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=9839799b505a You are awesome, thank you!
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; }