pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-pcu/+/30621 )
Change subject: tbf: Fix typo in define used ......................................................................
tbf: Fix typo in define used
Change-Id: I1d85cba17fc1ee70a063ed03c7707876e1349515 --- M src/tbf.cpp 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-pcu refs/changes/21/30621/1
diff --git a/src/tbf.cpp b/src/tbf.cpp index c934f07..90e2be6 100644 --- a/src/tbf.cpp +++ b/src/tbf.cpp @@ -646,7 +646,7 @@ OSMO_STRBUF_PRINTF(sb, "TBF("); OSMO_STRBUF_PRINTF(sb, "%s", direction == GPRS_RLCMAC_UL_TBF ? "UL" : "DL"); if (this->trx) { /* This may not be available during TBF alloc func time */ - int8_t tfi = (m_tfi == TBF_TS_UNSET) ? -1 : m_tfi; + int8_t tfi = (m_tfi == TBF_TFI_UNSET) ? -1 : m_tfi; OSMO_STRBUF_PRINTF(sb, ":TFI-%u-%u-%d", this->trx->bts->nr, this->trx->trx_no, tfi); }