From c135cd5be417b55b9a25c32d4cc584a6662fb109 Mon Sep 17 00:00:00 2001 From: Corentin Lecouvey Date: Thu, 16 Oct 2014 16:30:50 +0200 Subject: [PATCH] do not return an error when user stops discovery Currently when user stops the discovery, it always returns an error. When the discovery is stopped by the timeout callback, there is no error. This workaround consists of never returns any error. Change-Id: I9c5fa539f56997ec4210666e13cced600b58575f Signed-off-by: Corentin Lecouvey --- src/bluetooth-common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bluetooth-common.c b/src/bluetooth-common.c index 67a6cc1..b17f8c2 100644 --- a/src/bluetooth-common.c +++ b/src/bluetooth-common.c @@ -523,7 +523,7 @@ static void __bt_event_proxy(int event, bluetooth_event_param_t *param, void *us case BLUETOOTH_EVENT_DISCOVERY_FINISHED: BT_INFO("bt_adapter_device_discovery_state_changed_cb() will be called with BT_ADAPTER_DEVICE_DISCOVERY_FINISHED"); ((bt_adapter_device_discovery_state_changed_cb)bt_event_slot_container[event_index].callback) - (_bt_get_error_code(param->result), BT_ADAPTER_DEVICE_DISCOVERY_FINISHED, NULL, bt_event_slot_container[event_index].user_data); + (BT_ERROR_NONE, BT_ADAPTER_DEVICE_DISCOVERY_FINISHED, NULL, bt_event_slot_container[event_index].user_data); break; case BLUETOOTH_EVENT_REMOTE_DEVICE_NAME_UPDATED: BT_INFO("bt_adapter_device_discovery_state_changed_cb() will be called with BT_ADAPTER_DEVICE_DISCOVERY_FOUND"); -- 2.34.1