aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorLars Rasmusson <Lars.Rasmusson@sics.se>2012-01-14 12:14:36 +0100
committerLuke Dashjr <luke-jr+git@utopios.org>2012-01-23 22:38:30 -0500
commitb0870346f268d4c7f2d461c921ff63b6d967242d (patch)
tree4bcc1a1a21ad47e77cc3014e12dd5569d7c6324b /src/util.h
parentc144672045e69d82e4e48479f2f1ed9956186bfb (diff)
downloadbitcoin-b0870346f268d4c7f2d461c921ff63b6d967242d.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 78caff683d..c57e82bab0 100644
--- a/src/util.h
+++ b/src/util.h
@@ -749,8 +749,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