aboutsummaryrefslogtreecommitdiff
path: root/src/util.h
diff options
context:
space:
mode:
authorLuke Dashjr <luke-jr+git@utopios.org>2012-01-23 22:45:47 -0500
committerLuke Dashjr <luke-jr+git@utopios.org>2012-01-23 22:45:47 -0500
commita0db9a79e5b6b7226b7c3a3f61df30106eac304c (patch)
tree208a8a053bc072a57b5b3ecbf6b00d0c8390fb55 /src/util.h
parent382e613ef59f5bb121dcfde98c41b764b9d426dc (diff)
parent8f378e98c5121f4f5c4936ef879f208f5f95bb5e (diff)
downloadbitcoin-a0db9a79e5b6b7226b7c3a3f61df30106eac304c.tar.xz
Merge branch '0.5.0.x' into 0.5.x
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 d42b572c6b..5256104328 100644
--- a/src/util.h
+++ b/src/util.h
@@ -759,8 +759,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