summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordh79pyun <dh79.pyun@samsung.com>2021-10-18 14:09:21 +0900
committerdh79pyun <dh79.pyun@samsung.com>2021-10-18 14:09:21 +0900
commit965fec42929005a3f6372f46e0e5e3fb08eac556 (patch)
treeb4657e98f555a4faaa75dbdbd70a1a5cd9241923
parentf1594ed9376ba986a95df1bca13ecef524078aa9 (diff)
downloadbluetooth-965fec42929005a3f6372f46e0e5e3fb08eac556.tar.gz
bluetooth-965fec42929005a3f6372f46e0e5e3fb08eac556.tar.bz2
bluetooth-965fec42929005a3f6372f46e0e5e3fb08eac556.zip
Add the coverage exception for internal function
Change-Id: I3bfefd0ed1b17e9e20eaf3a68b30e0a44228913c Signed-off-by: dh79pyun <dh79.pyun@samsung.com>
-rw-r--r--src/bluetooth-gatt.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/bluetooth-gatt.c b/src/bluetooth-gatt.c
index 5ac2bef..b75b5d4 100644
--- a/src/bluetooth-gatt.c
+++ b/src/bluetooth-gatt.c
@@ -2851,6 +2851,7 @@ int bt_gatt_server_set_characteristic_notification_state_change_cb(bt_gatt_h gat
return BT_ERROR_NONE;
} /* LCOV_EXCL_STOP */
+/* LCOV_EXCL_START */
int bt_gatt_server_set_characteristic_notif_state_change_cb(bt_gatt_h gatt_handle,
bt_gatt_server_characteristic_notif_state_changed_cb callback,
void *user_data)
@@ -2865,11 +2866,12 @@ int bt_gatt_server_set_characteristic_notif_state_change_cb(bt_gatt_h gatt_handl
BT_VALIDATE_GATT_HANDLE(gatt_handle);
- chr->notif_changed_cb = callback; /* LCOV_EXCL_START */
+ chr->notif_changed_cb = callback;
chr->notif_changed_user_data = user_data;
return BT_ERROR_NONE;
-} /* LCOV_EXCL_STOP */
+}
+/* LCOV_EXCL_STOP */
#ifdef TIZEN_FEATURE_GATT_RELAY
/* LCOV_EXCL_START */