fixeria has uploaded this change for review.

View Change

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;
}

To view, visit change 42507. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: newchange
Gerrit-Project: osmo-bts
Gerrit-Branch: master
Gerrit-Change-Id: Ica33798adfdc5aad6b6aa9e252e9cc9294bad659
Gerrit-Change-Number: 42507
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>