pespin has submitted this change. (
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(-)
Approvals:
Jenkins Builder: Verified
laforge: Looks good to me, approved
fixeria: Looks good to me, but someone else must approve
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);
}
1 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.
--
To view, visit
https://gerrit.osmocom.org/c/osmo-pcu/+/30621
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-pcu
Gerrit-Branch: master
Gerrit-Change-Id: I1d85cba17fc1ee70a063ed03c7707876e1349515
Gerrit-Change-Number: 30621
Gerrit-PatchSet: 2
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: laforge <laforge(a)osmocom.org>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged