From c2dfa9289248530ef66b183b58015fe3fc4f827c Mon Sep 17 00:00:00 2001 From: Andrzej Kaczmarek Date: Thu, 16 Jan 2014 16:38:20 +0100 Subject: [PATCH] android/a2dp: Fix typo in condition --- android/a2dp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.47.3