From 3715103654dc1f045e5ba5f9e5d51b2355291e91 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Mon, 8 Apr 2013 22:14:49 -0500 Subject: [PATCH] hfp_hf_bluez5: Remove redundant parentheses --- plugins/hfp_hf_bluez5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/hfp_hf_bluez5.c b/plugins/hfp_hf_bluez5.c index d4a9b238..b28af074 100644 --- a/plugins/hfp_hf_bluez5.c +++ b/plugins/hfp_hf_bluez5.c @@ -342,8 +342,8 @@ static void hfp16_card_connect(struct ofono_handsfree_card *card, struct hfp *hfp = ofono_handsfree_card_get_data(card); struct hfp_slc_info *info = &hfp->info; - if ((info->hf_features & HFP_HF_FEATURE_CODEC_NEGOTIATION && - info->ag_features & HFP_AG_FEATURE_CODEC_NEGOTIATION)) { + if (info->hf_features & HFP_HF_FEATURE_CODEC_NEGOTIATION && + info->ag_features & HFP_AG_FEATURE_CODEC_NEGOTIATION) { struct cb_data *cbd = cb_data_new(cb, data); g_at_chat_send(info->chat, "AT+BCC", NULL, bcc_cb, cbd, g_free);