aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorLars Rasmusson <Lars.Rasmusson@sics.se>2012-01-14 12:14:36 +0100
committerLars Rasmusson <Lars.Rasmusson@sics.se>2012-01-14 12:14:36 +0100
commitb985efaac1b9fbdd308284e6f756aa11e7861225 (patch)
tree7ee55a0ee9d6d95a6961c0398144a565fdf67337 /src/util.h
parent9e8818ec9d01b3cf9e4aa601a96785c4fdc3f9b7 (diff)
downloadbitcoin-b985efaac1b9fbdd308284e6f756aa11e7861225.tar.xz
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.h4
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