All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] audio-settings: Fix unneeded async for GetProperties
@ 2013-02-25 13:48 Claudio Takahasi
  2013-02-25 18:21 ` Denis Kenzior
  0 siblings, 1 reply; 2+ messages in thread
From: Claudio Takahasi @ 2013-02-25 13:48 UTC (permalink / raw)
  To: ofono

[-- Attachment #1: Type: text/plain, Size: 680 bytes --]

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 aae7423..ee933d0 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) },
 	{ }
-- 
1.7.11.7


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-02-25 18:21 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-25 13:48 [PATCH] audio-settings: Fix unneeded async for GetProperties Claudio Takahasi
2013-02-25 18:21 ` Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.