Fix short L3 header of SI 10 at gsm_04_08.h

Change-Id: I1c3002716b08e31016cc6e623f8f8a413ef7916f
diff --git a/include/osmocom/gsm/protocol/gsm_04_08.h b/include/osmocom/gsm/protocol/gsm_04_08.h
index f9967ec..81e4817 100644
--- a/include/osmocom/gsm/protocol/gsm_04_08.h
+++ b/include/osmocom/gsm/protocol/gsm_04_08.h
@@ -1191,13 +1191,13 @@
 /* Section 9.1.50 System Information type 10 (ASCI) */
 struct gsm48_system_information_type_10 {
 #if OSMO_IS_LITTLE_ENDIAN
-	uint8_t rr_short_pd:1,	/* < RR short PD : bit > See 3GPP TS 24.007 §11.3.2 */
+	uint8_t	l2_header:2,	/* < short layer 2 header : bit(2) > See 3GPP TS 44.006 §6.4a */
 		msg_type:5,	/* < message type : bit(5) > See 3GPP TS 44.018 Table 10.4.2 */
-		l2_header:2;	/* < short layer 2 header : bit(2) > See 3GPP TS 44.006 §6.4a */
+		rr_short_pd:1;	/* < RR short PD : bit > See 3GPP TS 24.007 §11.3.2 */
 	uint8_t rest_octets[0];	/* < SI10 Rest Octets : bit(160) > See 3GPP TS 44.018 §10.5.2.44 */
 #elif OSMO_IS_BIG_ENDIAN
 /* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
-	uint8_t l2_header:2, msg_type:5, rr_short_pd:1;
+	uint8_t	rr_short_pd:1, msg_type:5, l2_header:2;
 	uint8_t rest_octets[0];
 #endif
 } __attribute__ ((packed));