From 688f976463dee599adf40b16050c106465c097fd Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Tue, 25 Jul 2017 15:25:58 +0200 Subject: [PATCH] l2cap: avoid unused parameter warning --- src/l2cap.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/l2cap.c b/src/l2cap.c index 30907cd55..439a3acc0 100644 --- a/src/l2cap.c +++ b/src/l2cap.c @@ -2197,6 +2197,10 @@ static void l2cap_signaling_handle_configure_response(l2cap_channel_t *channel, pos += length; } +#else + UNUSED(channel); + UNUSED(result); + UNUSED(command); #endif }