pespin has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32720
)
Change subject: pcu: Fix Unbound integer operand of unary increment operator.
......................................................................
pcu: Fix Unbound integer operand of unary increment operator.
Change-Id: I0779feea8e6305b2d8daee68786eee1f8d8f4f29
---
M pcu/GPRS_Components.ttcn
1 file changed, 10 insertions(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
fixeria: Looks good to me, approved
diff --git a/pcu/GPRS_Components.ttcn b/pcu/GPRS_Components.ttcn
index 37dcc97..a3e8c94 100644
--- a/pcu/GPRS_Components.ttcn
+++ b/pcu/GPRS_Components.ttcn
@@ -1205,7 +1205,7 @@
integer max_dummy := -1,
template (value) TsTrxBtsNum nr := ts_TsTrxBtsNum)
runs on MS_BTS_IFACE_CT return uint32_t {
- var integer i;
+ var integer i := 0;
var uint32_t dl_fn;
while (true) {
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/32720
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I0779feea8e6305b2d8daee68786eee1f8d8f4f29
Gerrit-Change-Number: 32720
Gerrit-PatchSet: 1
Gerrit-Owner: pespin <pespin(a)sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy(a)sysmocom.de>
Gerrit-Reviewer: pespin <pespin(a)sysmocom.de>
Gerrit-MessageType: merged