diff options
author | Lars Rasmusson <Lars.Rasmusson@sics.se> | 2012-01-14 12:14:36 +0100 |
---|---|---|
committer | Lars Rasmusson <Lars.Rasmusson@sics.se> | 2012-01-14 12:14:36 +0100 |
commit | b985efaac1b9fbdd308284e6f756aa11e7861225 (patch) | |
tree | 7ee55a0ee9d6d95a6961c0398144a565fdf67337 /src/util.h | |
parent | 9e8818ec9d01b3cf9e4aa601a96785c4fdc3f9b7 (diff) |
Replace tabs with four spaces to comply with coding standard in doc/coding.txt
Diffstat (limited to 'src/util.h')
-rw-r--r-- | src/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.h b/src/util.h index 87725b7217..19f06521ef 100644 --- a/src/util.h +++ b/src/util.h @@ -716,8 +716,8 @@ inline bool AffinityBugWorkaround(void(*pfn)(void*)) inline uint32_t ByteReverse(uint32_t value) { - value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8); - return (value<<16) | (value>>16); + value = ((value & 0xFF00FF00) >> 8) | ((value & 0x00FF00FF) << 8); + return (value<<16) | (value>>16); } #endif |