Commit 851a1e83 authored by Pau Espin Pedrol's avatar Pau Espin Pedrol
Browse files

NAS_CommonTypeDefs.ttcn: Fix endianness of Type{4,6}Length_Type

parent 402d18a7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -24,8 +24,8 @@ module NAS_CommonTypeDefs {
  type HalfOctet_Type           IEI4_Type; /* 4 bit info element identifier for type 1 IEs */
  type Octet_Type               IEI8_Type; /* 8 bit info element identifier */

  type O1_Type                  Type4Length_Type;
  type O2_Type                  Type6Length_Type;
  type O1_Type                  Type4Length_Type with { variant "COMP(nosign), BYTEORDER(last)" };
  type O2_Type                  Type6Length_Type with { variant "COMP(nosign), BYTEORDER(last)" };

  type HalfOctet_Type           SpareHalfOctet;