aboutsummaryrefslogtreecommitdiffstats
path: root/src/osmo-bts-sysmo/l1_if.c
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2016-01-08 13:26:57 +0100
committerHarald Welte <laforge@gnumonks.org>2016-01-08 14:19:23 +0100
commit74269054a6980068a82c681035177bba742575aa (patch)
treea3d688894c1cce277ca23820a6c4171c9c076a17 /src/osmo-bts-sysmo/l1_if.c
parenta62e3221b650d576e27efd52f2f51f8786634a71 (diff)
sysmobts: add missing break statement in l1if_handle_ind()
this was introduced in 21b020b33633683d7c785af15c773aab0f79d0de and luckily spotted by coverity (CID 1347446)
Diffstat (limited to 'src/osmo-bts-sysmo/l1_if.c')
-rw-r--r--src/osmo-bts-sysmo/l1_if.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/osmo-bts-sysmo/l1_if.c b/src/osmo-bts-sysmo/l1_if.c
index d80e2430..8457a748 100644
--- a/src/osmo-bts-sysmo/l1_if.c
+++ b/src/osmo-bts-sysmo/l1_if.c
@@ -974,6 +974,7 @@ static int l1if_handle_ind(struct femtol1_hdl *fl1, struct msgb *msg)
case GsmL1_PrimId_PhReadyToSendInd:
rc = handle_ph_readytosend_ind(fl1, &l1p->u.phReadyToSendInd,
msg);
+ break;
case GsmL1_PrimId_PhDataInd:
rc = handle_ph_data_ind(fl1, &l1p->u.phDataInd, msg);
break;