summaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2013-04-08 22:14:49 -0500
committerDenis Kenzior <denkenz@gmail.com>2013-04-09 14:33:41 -0500
commit3715103654dc1f045e5ba5f9e5d51b2355291e91 (patch)
tree8527662bf54c333b4a04266d2fb6bffb3a77d588 /plugins
parent3697794f9ea70b1efbc4c67db86e47bacec9d8f4 (diff)
downloadofono-3715103654dc1f045e5ba5f9e5d51b2355291e91.tar.bz2
hfp_hf_bluez5: Remove redundant parentheses
Diffstat (limited to 'plugins')
-rw-r--r--plugins/hfp_hf_bluez5.c4
1 files 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);