From 1a50bbb4eac1fb9eebf7a00de87bbbbb14cbeae0 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Fri, 17 Feb 2012 16:17:36 +0200 Subject: [PATCH] audio: Fix signature of MediaTransport.Acquire method Acquire returns the input and output MTUs in addition to the file descriptor, but the signature doesn't indicate that. --- audio/transport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/transport.c b/audio/transport.c index 209264419..b319e0e99 100644 --- a/audio/transport.c +++ b/audio/transport.c @@ -916,7 +916,7 @@ static DBusMessage *get_properties(DBusConnection *conn, DBusMessage *msg, static GDBusMethodTable transport_methods[] = { { "GetProperties", "", "a{sv}", get_properties }, - { "Acquire", "s", "h", acquire, + { "Acquire", "s", "hqq", acquire, G_DBUS_METHOD_FLAG_ASYNC}, { "Release", "s", "", release, G_DBUS_METHOD_FLAG_ASYNC}, -- 2.47.3