diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-06-06 10:20:21 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-06-06 10:20:21 +0000 |
commit | f269e27ce7e39e6484cf02a137dcda7458a7fd85 (patch) | |
tree | 6a88312826c2db34034ceca65afa9503a69a4f9e /audio/device.c | |
parent | 5c4f688af6ad797033b233521cd75852602fa93d (diff) |
Fix the last remains of sending helpers
Diffstat (limited to 'audio/device.c')
-rw-r--r-- | audio/device.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/audio/device.c b/audio/device.c index c9608b96..2f5f834f 100644 --- a/audio/device.c +++ b/audio/device.c @@ -311,7 +311,9 @@ void device_finish_sdp_transaction(struct audio_device *dev) dbus_message_append_args(msg, DBUS_TYPE_STRING, &addr_ptr, DBUS_TYPE_INVALID); - send_message_and_unref(dev->conn, msg); + dbus_connection_send(dev->conn, msg, NULL); + + dbus_message_unref(msg); } #if 0 |