aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2023-02-20 09:50:13 +0100
committerOliver Smith <osmith@sysmocom.de>2023-02-20 09:50:13 +0100
commita2154c7350c5310184971c3240c0187ef90ba518 (patch)
tree33d93f32062cae63498ba2bd75d9d4cf449aebbd
parentabf1d43e5e3eac3a530e121d5e9787807cb5b324 (diff)
Run struct_endianness.py
Ensure there is no diff to prepare to run this in CI. Related: OS#5884 Change-Id: I0ae0b911f02b4f57d82c928cfc4a14a3dc397ab3
-rw-r--r--src/libosmo-pfcp/pfcp_msg.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libosmo-pfcp/pfcp_msg.c b/src/libosmo-pfcp/pfcp_msg.c
index 18b9113..9893cb2 100644
--- a/src/libosmo-pfcp/pfcp_msg.c
+++ b/src/libosmo-pfcp/pfcp_msg.c
@@ -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];