mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
fix code style
This commit is contained in:
parent
a4cd9f516b
commit
eb9074488c
@ -48,7 +48,7 @@ inline uint32_t HadoopSnappyDecoder::readLength(const char * in)
|
||||
uint32_t b2 = *(reinterpret_cast<const uint8_t *>(in + 1));
|
||||
uint32_t b3 = *(reinterpret_cast<const uint8_t *>(in + 2));
|
||||
uint32_t b4 = *(reinterpret_cast<const uint8_t *>(in + 3));
|
||||
uint32_t res = ((b1 << 24) + (b2 << 16) + (b3 << 8) + (b4 << 0));
|
||||
uint32_t res = ((b1 << 24) + (b2 << 16) + (b3 << 8) + b4);
|
||||
return res;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user