From 0e3af927b7558064380008471fdaae3a570c99bf Mon Sep 17 00:00:00 2001 From: Chan-yeol Park Date: Sat, 24 Oct 2015 01:14:27 +0900 Subject: [PATCH] audio: Fix mtu input order This patch fixes imtu,omtu input order in avdtp_stream_set_transport(). --- profiles/audio/a2dp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/audio/a2dp.c b/profiles/audio/a2dp.c index 9121dab09..b0fea7c4e 100644 --- a/profiles/audio/a2dp.c +++ b/profiles/audio/a2dp.c @@ -1457,7 +1457,7 @@ static void transport_cb(GIOChannel *io, GError *err, gpointer user_data) if (!avdtp_stream_set_transport(setup->stream, g_io_channel_unix_get_fd(io), - omtu, imtu)) + imtu, omtu)) goto drop; g_io_channel_set_close_on_unref(io, FALSE); -- 2.47.3