aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2020-06-23 14:29:56 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2020-06-23 14:30:13 +0200
commit709650980a1a0ab6cf55074a044f8373adf231bb (patch)
treeacc58ab2cc4ece801daffe04b804db0abbe80e32
parent89db3e0f331e860ecb1193ea721d30a06894db21 (diff)
library/RSL: fix trailing whitespace
-rw-r--r--library/RSL_Emulation.ttcn4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/RSL_Emulation.ttcn b/library/RSL_Emulation.ttcn
index 41c689f3..66cc4dc1 100644
--- a/library/RSL_Emulation.ttcn
+++ b/library/RSL_Emulation.ttcn
@@ -187,7 +187,7 @@ private function f_cid_by_comp_ref(RSL_DchanHdlr comp_ref)
runs on RSL_Emulation_CT return integer {
var integer i;
for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
- if (ispresent(ConnectionTable[i].comp_ref) and
+ if (ispresent(ConnectionTable[i].comp_ref) and
ConnectionTable[i].comp_ref == comp_ref) {
return i;
}
@@ -200,7 +200,7 @@ private function f_cid_by_chan_nr(uint8_t trx_nr, RslChannelNr chan_nr)
runs on RSL_Emulation_CT return integer {
var integer i;
for (i := 0; i < sizeof(ConnectionTable); i := i+1) {
- if (ispresent(ConnectionTable[i].chan_nr) and
+ if (ispresent(ConnectionTable[i].chan_nr) and
ConnectionTable[i].chan_nr == chan_nr and ConnectionTable[i].trx_nr == trx_nr) {
return i;
}