From: DoHyun Pyun Date: Fri, 28 Apr 2017 04:02:31 +0000 (+0900) Subject: Fix the build error for gatt client X-Git-Tag: submit/tizen_3.0/20170428.003957^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ef00ac6e3900f9440a1029e12546427118c89c4;p=platform%2Fcore%2Fapi%2Fbluetooth.git Fix the build error for gatt client Change-Id: I457d15265921af7a45f0ccd86637c276fd73f3a0 Signed-off-by: DoHyun Pyun --- diff --git a/src/bluetooth-gatt.c b/src/bluetooth-gatt.c index 019b8ce..9c4fe73 100644 --- a/src/bluetooth-gatt.c +++ b/src/bluetooth-gatt.c @@ -751,7 +751,7 @@ int bt_gatt_read_characteristic_value(bt_gatt_attribute_h characteristic, BT_CHECK_INPUT_PARAMETER(characteristic); BT_CHECK_INPUT_PARAMETER(callback); /* LCOV_EXCL_START */ - ret = _bt_get_error_code(bluetooth_gatt_read_characteristic_value((const char *)characteristic)); + ret = _bt_get_error_code(bluetooth_gatt_read_characteristic_value((const char *)characteristic, NULL)); if (ret != BT_ERROR_NONE) { BT_ERR("%s(0x%08x)", _bt_convert_error_to_string(ret), ret);