X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=include%2Fopenvswitch%2Ftypes.h;h=ad05757c12bcf3aec8b9bff9c13191acb934fa70;hb=28debff598c34799df058f651ed8eb09f56ef00d;hp=90a32f55d7520702e298c35c09af62829e7508be;hpb=9ea0bccc83a84458d934966eae15c78f3ee2bac8;p=openvswitch diff --git a/include/openvswitch/types.h b/include/openvswitch/types.h index 90a32f55..ad05757c 100644 --- a/include/openvswitch/types.h +++ b/include/openvswitch/types.h @@ -48,16 +48,16 @@ typedef __be64 ovs_be64; * boundary. */ typedef struct { #ifdef WORDS_BIGENDIAN - uint32_t hi, lo; + uint32_t hi, lo; #else - uint32_t lo, hi; + uint32_t lo, hi; #endif } ovs_32aligned_u64; /* A 64-bit value, in network byte order, that is only aligned on a 32-bit * boundary. */ typedef struct { - ovs_be32 hi, lo; + ovs_be32 hi, lo; } ovs_32aligned_be64; #endif /* openvswitch/types.h */