summaryrefslogtreecommitdiff
path: root/android/a2dp.c
diff options
context:
space:
mode:
authorAndrzej Kaczmarek <andrzej.kaczmarek@tieto.com>2014-01-16 16:38:20 +0100
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-01-16 17:50:32 +0200
commitc2dfa9289248530ef66b183b58015fe3fc4f827c (patch)
tree1ccc6fd0c50a58eb0da2ef99fa13f14ecf2d20b2 /android/a2dp.c
parent73613fe0268b3b0225105737bf60e6b30e17ba59 (diff)
downloadbluez-c2dfa9289248530ef66b183b58015fe3fc4f827c.tar.gz
android/a2dp: Fix typo in condition
Diffstat (limited to 'android/a2dp.c')
-rw-r--r--android/a2dp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/a2dp.c b/android/a2dp.c
index 9b168ed82..2288912cc 100644
--- a/android/a2dp.c
+++ b/android/a2dp.c
@@ -1262,7 +1262,7 @@ static void bt_stream_open(const void *buf, uint16_t len)
return;
}
- if (avdtp_stream_get_transport(setup->stream, &fd, NULL, NULL, NULL)) {
+ if (!avdtp_stream_get_transport(setup->stream, &fd, NULL, NULL, NULL)) {
error("avdtp_stream_get_transport: failed");
audio_ipc_send_rsp(AUDIO_OP_OPEN_STREAM, AUDIO_STATUS_FAILED);
return;