Lenght variable shouldn't be hardcoded in test case structs. --- android/tester-gatt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/android/tester-gatt.c b/android/tester-gatt.c index 38dd0ee..97fe0f0 100644 --- a/android/tester-gatt.c +++ b/android/tester-gatt.c @@ -596,7 +596,7 @@ static struct set_read_params set_read_param_1 = { .srvc_id = &service_1, .char_id = &characteristic_1, .value = value_1, - .len = 1, + .len = sizeof(value_1), .status = BT_STATUS_SUCCESS }; @@ -620,7 +620,7 @@ static struct set_read_params set_read_param_4 = { .char_id = &characteristic_1, .descr_id = &desc_1, .value = value_1, - .len = 1, + .len = sizeof(value_1), .status = BT_STATUS_SUCCESS }; -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html