cosmetic: osmux: Fix formatting of if-else brackets

Change-Id: I748d41cd110841ef121f70560e70c07de56aa9da
This commit is contained in:
Pau Espin 2022-09-22 21:47:23 +02:00
parent 582c2bf7b0
commit b9022497d8
1 changed files with 2 additions and 1 deletions

View File

@ -598,8 +598,9 @@ int conn_osmux_allocate_cid(struct mgcp_conn_rtp *conn, int osmux_cid)
"no available Osmux CID to allocate!\n");
return -1;
}
} else
} else {
osmux_cid_pool_get(osmux_cid);
}
conn->osmux.cid = (uint8_t) osmux_cid;
conn->osmux.cid_allocated = true;