Run struct_endianness.py

Ensure there is no diff to prepare to run this in CI.

Related: OS#5884
Change-Id: I0ae0b911f02b4f57d82c928cfc4a14a3dc397ab3
This commit is contained in:
Oliver Smith 2023-02-20 09:50:13 +01:00
parent abf1d43e5e
commit a2154c7350
1 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ struct osmo_pfcp_header_common {
uint8_t message_type;
uint16_t message_length;
#elif OSMO_IS_BIG_ENDIAN
/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
uint8_t version:3, spare:2, follow_on:1, message_priority_present:1, seid_present:1;
uint8_t message_type;
uint16_t message_length;
@ -93,7 +93,7 @@ struct osmo_pfcp_header_seid {
uint8_t message_priority:4,
spare:4;
#elif OSMO_IS_BIG_ENDIAN
/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianess.py) */
/* auto-generated from the little endian part above (libosmocore/contrib/struct_endianness.py) */
struct osmo_pfcp_header_common c;
uint64_t session_endpoint_identifier;
uint8_t sequence_nr[3];