Replace tabs with four spaces to comply with coding standard in doc/coding.txt

This commit is contained in:
Lars Rasmusson
2012-01-14 12:14:36 +01:00
parent 9e8818ec9d
commit b985efaac1
4 changed files with 11 additions and 11 deletions

View File

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