Commit 1c244f79 authored by Gustavo Padovan's avatar Gustavo Padovan

Bluetooth: Add missing braces to an "else if"

Trivial change in the coding style.
Signed-off-by: default avatarGustavo Padovan <gustavo.padovan@collabora.co.uk>
parent a767631a
......@@ -1415,8 +1415,9 @@ static void l2cap_conn_ready(struct l2cap_conn *conn)
sk->sk_state_change(sk);
release_sock(sk);
} else if (chan->state == BT_CONNECT)
} else if (chan->state == BT_CONNECT) {
l2cap_do_start(chan);
}
l2cap_chan_unlock(chan);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment