summaryrefslogtreecommitdiff
path: root/android/ipc-tester.c
diff options
context:
space:
mode:
authorAnderson Lizardo <anderson.lizardo@openbossa.org>2014-01-25 21:44:00 -0400
committerSzymon Janc <szymon.janc@tieto.com>2014-01-27 21:48:02 +0100
commit334254e4d0d1a4441be74554c9b3eb336f7c8eda (patch)
tree5933c01a7551917218ff2fa079fcc17081de6848 /android/ipc-tester.c
parent3badc45e21a54f3e0fae13fa7e6f64e4fb55362d (diff)
downloadbluez-334254e4d0d1a4441be74554c9b3eb336f7c8eda.tar.gz
android: Remove useless extra parenthesis
Diffstat (limited to 'android/ipc-tester.c')
-rw-r--r--android/ipc-tester.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/ipc-tester.c b/android/ipc-tester.c
index e1aeb2eaa..ec8d3ffa8 100644
--- a/android/ipc-tester.c
+++ b/android/ipc-tester.c
@@ -264,7 +264,7 @@ static void emulator(int pipe, int hci_index)
memset(buf, 0, sizeof(buf));
len = read(fd, buf, sizeof(buf));
- if (len <= 0 || (strcmp(buf, "ctl.start=bluetoothd")))
+ if (len <= 0 || strcmp(buf, "ctl.start=bluetoothd"))
goto failed;
close(pipe);