From f243bda1dd0700060ce2d397bed7788951de63e6 Mon Sep 17 00:00:00 2001 From: Andrei Emeltchenko Date: Fri, 4 Jul 2014 16:43:58 +0300 Subject: [PATCH] android/tester: Remove unused assignment 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 bf39517cf..ff296759f 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, -- 2.47.3