aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-05-25 21:23:46 +0700
committerVadim Yanitskiy <vyanitskiy@sysmocom.de>2020-05-25 22:14:04 +0700
commit6b4856dd17f5fa87b9eb7bfe16eac06145d4af1c (patch)
treecf0a4e6326f69001a5b95a61253f03b4b738eeb9
parent44f0c48a3e9386c61c94817ae36f6b599ce5fbe7 (diff)
library/IPA_Emulation: cosmetic: fix template restrictions
-rw-r--r--library/IPA_Emulation.ttcnpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/library/IPA_Emulation.ttcnpp b/library/IPA_Emulation.ttcnpp
index 8954f713..1bfc8dc4 100644
--- a/library/IPA_Emulation.ttcnpp
+++ b/library/IPA_Emulation.ttcnpp
@@ -110,12 +110,12 @@ type record ASP_RSL_Unitdata {
RSL_Message rsl
};
-template ASP_RSL_Unitdata ts_ASP_RSL_UD(IpaStreamId sid, template RSL_Message rsl) := {
+template (value) ASP_RSL_Unitdata ts_ASP_RSL_UD(IpaStreamId sid, template (value) RSL_Message rsl) := {
streamId := sid,
- rsl := valueof(rsl)
+ rsl := rsl
}
-template ASP_RSL_Unitdata tr_ASP_RSL_UD(IpaStreamId sid, template RSL_Message rsl) := {
+template ASP_RSL_Unitdata tr_ASP_RSL_UD(template IpaStreamId sid, template RSL_Message rsl) := {
streamId := sid,
rsl := rsl
}