diff --git a/pcu/GPRS_Components.ttcn b/pcu/GPRS_Components.ttcn index c860af590..4b4e2a072 100644 --- a/pcu/GPRS_Components.ttcn +++ b/pcu/GPRS_Components.ttcn @@ -113,7 +113,7 @@ type record GprsMS { UlTbf ul_tbf optional, /* TODO: Only 1 UL tbf supported for now */ DlTbf dl_tbf optional /* TODO: Only 1 DL tbf supported for now */ }; -type record of GprsMS GprsMSArray; +type record of GprsMS GprsMSList; template AckNackDescription t_AckNackDescription_init := { final_ack := '0'B, @@ -163,7 +163,7 @@ type component MS_BTS_IFACE_CT { port RAW_PCU_MSG_PT BTS; /* Mobile station(s) involved in a testing scenario */ - var GprsMSArray g_ms := { }; + var GprsMSList g_ms := { }; /* Value at which Countdown Procedure starts. Announced by network (GPRS Cell Options as per TS 04.60 Chapter 12.24) */ var uint4_t g_bs_cv_max := 4;