diff --git a/subsys/bluetooth/host/conn.c b/subsys/bluetooth/host/conn.c index f043e08b785c5e..66b16749a54aac 100644 --- a/subsys/bluetooth/host/conn.c +++ b/subsys/bluetooth/host/conn.c @@ -744,7 +744,7 @@ static int send_buf(struct bt_conn *conn, struct net_buf *buf, } else if (is_acl_conn(conn)) { err = send_acl(conn, frag, flags); } else { - err = -EINVAL; /* Some animals disable asserts (╯°□°)╯︵ ┻━┻ */ + err = -EINVAL; /* asserts may be disabled */ __ASSERT(false, "Invalid connection type %u", conn->type); }