osmith has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-bsc/+/31646 )
Change subject: test_codec_support_bts_rate: add missing breaks ......................................................................
test_codec_support_bts_rate: add missing breaks
Fixes: 3db22c61 ("cosmetic: clarify test_codec_support_bts()") Fixes: CID#310823 Change-Id: I951783b6310f0a6ef5546a36c962def9d6e66285 --- M src/osmo-bsc/codec_pref.c 1 file changed, 13 insertions(+), 0 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-bsc refs/changes/46/31646/1
diff --git a/src/osmo-bsc/codec_pref.c b/src/osmo-bsc/codec_pref.c index 11421a9..2c90831 100644 --- a/src/osmo-bsc/codec_pref.c +++ b/src/osmo-bsc/codec_pref.c @@ -188,9 +188,11 @@ case GSM_PCHAN_TCH_F_PDCH: if (full_rate) return true; + break; case GSM_PCHAN_TCH_H: if (!full_rate) return true; + break; default: continue; }