fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bts/+/42507?usp=email )
Change subject: phy_link: phy_instance_link_to_trx(): add missing semicolon ......................................................................
phy_link: phy_instance_link_to_trx(): add missing semicolon
Change-Id: Ica33798adfdc5aad6b6aa9e252e9cc9294bad659 --- M src/common/phy_link.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bts refs/changes/07/42507/1
diff --git a/src/common/phy_link.c b/src/common/phy_link.c index 352d8f7..ee5ef8a 100644 --- a/src/common/phy_link.c +++ b/src/common/phy_link.c @@ -119,7 +119,7 @@ void phy_instance_link_to_trx(struct phy_instance *pinst, struct gsm_bts_trx *trx) { /* There might already be an associated TRX */ - OSMO_ASSERT(pinst->trx == NULL) + OSMO_ASSERT(pinst->trx == NULL); trx->pinst = pinst; pinst->trx = trx; }