---
android/a2dp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/android/a2dp.c b/android/a2dp.c
index 9b168ed..2288912 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;
--
1.8.5.2
Hi Andrzej,
On Thu, Jan 16, 2014 at 5:38 PM, Andrzej Kaczmarek
<[email protected]> wrote:
> ---
> android/a2dp.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/android/a2dp.c b/android/a2dp.c
> index 9b168ed..2288912 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;
> --
> 1.8.5.2
Applied, thanks.
--
Luiz Augusto von Dentz