From 55c53daf9f9afa97fa848baaab5ef38ce4716a8a Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Fri, 8 Jul 2016 17:39:10 +0000 Subject: [PATCH] fix packing issue --- src/transport/plugin_transport_http_common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/transport/plugin_transport_http_common.h b/src/transport/plugin_transport_http_common.h index f97318740..8a32e17e4 100644 --- a/src/transport/plugin_transport_http_common.h +++ b/src/transport/plugin_transport_http_common.h @@ -93,12 +93,12 @@ struct HttpAddress * Address options * see `enum HttpAddressOptions` */ - uint32_t options; + uint32_t options GNUNET_PACKED; /** * Length of URL located after struct */ - uint32_t urlen; + uint32_t urlen GNUNET_PACKED; }; GNUNET_NETWORK_STRUCT_END -- 2.25.1