From 3e68d12a4f00948d679d47b764f8bc11851fbe94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Dalleau?= Date: Mon, 2 Jul 2012 18:07:52 +0200 Subject: [PATCH] audio: Fix style issue in start_timeout open_acp is a boolean and not an integer --- audio/avdtp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/audio/avdtp.c b/audio/avdtp.c index e431ce806..47a5d6d38 100644 --- a/audio/avdtp.c +++ b/audio/avdtp.c @@ -3627,7 +3627,7 @@ static gboolean start_timeout(gpointer user_data) struct avdtp_stream *stream = user_data; struct avdtp *session = stream->session; - stream->open_acp = 0; + stream->open_acp = FALSE; if (avdtp_start(session, stream) < 0) error("wait_timeout: avdtp_start failed"); -- 2.47.3