Style.
This commit is contained in:
@@ -292,10 +292,10 @@ nxt_app_msg_read_length(u_char *src, size_t *length)
|
||||
src++;
|
||||
|
||||
} else {
|
||||
*length = ((src[0] & 0x7FU) << 24) +
|
||||
(src[1] << 16) +
|
||||
(src[2] << 8) +
|
||||
src[3];
|
||||
*length = ((src[0] & 0x7FU) << 24)
|
||||
+ ( src[1] << 16)
|
||||
+ ( src[2] << 8)
|
||||
+ src[3];
|
||||
src += 4;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user