Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);
	}