2
0
mirror of https://github.com/openvswitch/ovs synced 2025-09-02 23:35:27 +00:00

treewide: Convert tabs to spaces in C source files written in OVS style.

The Open vSwitch C style doesn't use hard tabs.

This commit doesn't touch files written in kernel style or that are
imported from other projects where we want to minimize changes from
upstream (the sflow files).

Reported-by: Mehak Mahajan <mmahajan@nicira.com>
Signed-off-by: Ben Pfaff <blp@nicira.com>
This commit is contained in:
Ben Pfaff
2012-03-23 11:43:54 -07:00
parent ada3428f09
commit 05fe17646f
7 changed files with 45 additions and 45 deletions

View File

@@ -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 */