From: Corentin Lecouvey Date: Thu, 16 Oct 2014 14:30:50 +0000 (+0200) Subject: do not return an error when user stops discovery X-Git-Tag: submit/tizen/20141021.025356^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fheads%2Ftizen_3.0.2014.q3_common;p=platform%2Fcore%2Fapi%2Fbluetooth.git 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 --- 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");