From: Andrei Emeltchenko <andrei.emeltchenko@xxxxxxxxx> Fixes clang warning: ... android/android-tester.c:1014:2: warning: Value stored to 'status' is never read status = data->if_bluetooth->get_remote_device_property(&remote_addr, prop.type); 1 warning generated. ... --- android/android-tester.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/android/android-tester.c b/android/android-tester.c index bf39517..ff29675 100644 --- a/android/android-tester.c +++ b/android/android-tester.c @@ -1011,7 +1011,7 @@ static void remote_setprop_device_found_cb(int num_properties, &prop); check_expected_status(status); - status = data->if_bluetooth->get_remote_device_property(&remote_addr, prop.type); + data->if_bluetooth->get_remote_device_property(&remote_addr, prop.type); } static void remote_setprop_fail_device_found_cb(int num_properties, -- 1.9.1 -- 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