library/IPA_Emulation: cosmetic: fix template restrictions

Change-Id: I375d1b50491ff0c848088277a86dc061be0a943b
diff --git a/library/IPA_Emulation.ttcnpp b/library/IPA_Emulation.ttcnpp
index 8954f71..1bfc8dc 100644
--- a/library/IPA_Emulation.ttcnpp
+++ b/library/IPA_Emulation.ttcnpp
@@ -110,12 +110,12 @@
 	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
 }