https://bugs.freedesktop.org/show_bug.cgi?id=48376
--- Comment #1 from Peter Meerwald <[email protected]> 2012-04-06 02:50:17 PDT --- patch submitted From: Peter Meerwald <[email protected]> Date: Fri, 6 Apr 2012 11:40:32 +0200 Subject: [PATCH] dbus: fix dbus argument type in iface-stream.c handle_move() BugLink: https://bugs.freedesktop.org/show_bug.cgi?id=48376 Signed-off-by: Peter Meerwald <[email protected]> --- src/modules/dbus/iface-stream.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/modules/dbus/iface-stream.c b/src/modules/dbus/iface-stream.c index ecd0ff3..c6dc1c9 100644 --- a/src/modules/dbus/iface-stream.c +++ b/src/modules/dbus/iface-stream.c @@ -611,7 +611,7 @@ static void handle_move(DBusConnection *conn, DBusMessage *msg, void *userdata) pa_assert(msg); pa_assert(s); - pa_assert_se(dbus_message_get_args(msg, NULL, DBUS_TYPE_STRING, &device, DBUS_TYPE_INVALID)); + pa_assert_se(dbus_message_get_args(msg, NULL, DBUS_TYPE_OBJECT_PATH, &device, DBUS_TYPE_INVALID)); if (s->type == STREAM_TYPE_PLAYBACK) { pa_sink *sink = pa_dbusiface_core_get_sink(s->core, device); -- 1.7.4.1 -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA Contact for the bug. You are the assignee for the bug. _______________________________________________ pulseaudio-bugs mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/pulseaudio-bugs
