summaryrefslogtreecommitdiff
path: root/unit
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2017-06-30 15:42:29 +0300
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2017-07-04 12:30:05 +0300
commit0f3f40bab5c746e8a06c7b2a4d4a4a7fdb99f6d8 (patch)
treed6c789b999c48cc20f903533cd62be9f232edcaf /unit
parentf59f3dedb2c79a75e51a3a0d27e2ae06fefc603e (diff)
downloadbluez-0f3f40bab5c746e8a06c7b2a4d4a4a7fdb99f6d8.tar.gz
shared/gatt-client: Allow multiple ready callbacks
This makes the ready callbacks much more convenient to track when the client is ready since its is now possible to notify more than on client at the same time.
Diffstat (limited to 'unit')
-rw-r--r--unit/test-gatt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unit/test-gatt.c b/unit/test-gatt.c
index 15638dc89..5d79e94c0 100644
--- a/unit/test-gatt.c
+++ b/unit/test-gatt.c
@@ -684,8 +684,8 @@ static struct context *create_context(uint16_t mtu, gconstpointer data)
bt_gatt_client_set_debug(context->client, print_debug,
"bt_gatt_client:", NULL);
- bt_gatt_client_set_ready_handler(context->client,
- client_ready_cb, context, NULL);
+ bt_gatt_client_ready_register(context->client, client_ready_cb,
+ context, NULL);
break;
default:
break;