diff --git a/tools/mpris-proxy.c b/tools/mpris-proxy.c
index e5fc91f..d72fc45 100644
--- a/tools/mpris-proxy.c
+++ b/tools/mpris-proxy.c
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;
}
NULL,
mpris_properties,
player, NULL)) {
- fprintf(stderr, "Could not register interface %s",
+ fprintf(stderr, "Could not register interface %s\n",
MPRIS_INTERFACE);
goto fail;
}
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;
}
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;
}
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;
}