From 82fae93ca19a91b3ee9fb8b15fde6c3b489d6526 Mon Sep 17 00:00:00 2001 From: Claudio Takahasi Date: Mon, 25 Feb 2013 10:48:39 -0300 Subject: [PATCH] audio-settings: Fix unneeded async for GetProperties GetProperties method call for Audio settings returns the reply in the same iteraction, it doesn't need to be asynchronous. --- src/audio-settings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio-settings.c b/src/audio-settings.c index aae74230..ee933d03 100644 --- a/src/audio-settings.c +++ b/src/audio-settings.c @@ -118,7 +118,7 @@ static DBusMessage *audio_get_properties(DBusConnection *conn, } static const GDBusMethodTable audio_methods[] = { - { GDBUS_ASYNC_METHOD("GetProperties", + { GDBUS_METHOD("GetProperties", NULL, GDBUS_ARGS({ "properties", "a{sv}" }), audio_get_properties) }, { }