fixeria has submitted this change. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41644?usp=email )
Change subject: bts: fix unbound variable in as_rsl_fail_err()
......................................................................
bts: fix unbound variable in as_rsl_fail_err()
Change-Id: Ifcbdfb8b5a0e08ca3f8e610ca4940a2bdafa3cac
---
M bts/BTS_Tests_LAPDm.ttcn
1 file changed, 1 insertion(+), 1 deletion(-)
Approvals:
pespin: Looks good to me, but someone else must approve
Jenkins Builder: Verified
osmith: Looks good to me, approved
diff --git a/bts/BTS_Tests_LAPDm.ttcn b/bts/BTS_Tests_LAPDm.ttcn
index 5b33795..0510695 100644
--- a/bts/BTS_Tests_LAPDm.ttcn
+++ b/bts/BTS_Tests_LAPDm.ttcn
@@ -507,7 +507,7 @@
/* fail if we receive an RSL ERROR IND */
private altstep as_rsl_fail_err() runs on ConnHdlr {
var RSL_Message rx_rsl;
- [] RSL.receive(tr_RSL_ERROR_IND(g_chan_nr, ?, ?)) {
+ [] RSL.receive(tr_RSL_ERROR_IND(g_chan_nr, ?, ?)) -> value rx_rsl {
setverdict(fail, "Received RSL ERROR IND ", rx_rsl);
}
}
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/41644?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Ifcbdfb8b5a0e08ca3f8e610ca4940a2bdafa3cac
Gerrit-Change-Number: 41644
Gerrit-PatchSet: 2
Gerrit-Owner: fixeria <[email protected]>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <[email protected]>
Gerrit-Reviewer: osmith <[email protected]>
Gerrit-Reviewer: pespin <[email protected]>