X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=include%2Fopenvswitch%2Ftypes.h;fp=include%2Fopenvswitch%2Ftypes.h;h=ad05757c12bcf3aec8b9bff9c13191acb934fa70;hb=05fe17646fc1ed2527f26eddb13e09ec14cc29b9;hp=90a32f55d7520702e298c35c09af62829e7508be;hpb=ada3428f0906c835d2f7e84745b0a477bade5a11;p=sliver-openvswitch.git diff --git a/include/openvswitch/types.h b/include/openvswitch/types.h index 90a32f55d..ad05757c1 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 */