diff options
author | Valentin Bartenev <vbart@nginx.com> | 2018-04-05 15:49:41 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2018-04-05 15:49:41 +0300 |
commit | d15b4ca90639d0e6a5caab9ec905e49228072faf (patch) | |
tree | b929a2fed7cc997a5e18e42e74858c09d8258306 /src/nxt_application.h | |
parent | 49bd3a21e0f995c895b445c0566227661418c2bc (diff) | |
download | unit-d15b4ca90639d0e6a5caab9ec905e49228072faf.tar.gz unit-d15b4ca90639d0e6a5caab9ec905e49228072faf.tar.bz2 |
Style.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_application.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nxt_application.h b/src/nxt_application.h index bdff4a62..caf5b884 100644 --- a/src/nxt_application.h +++ b/src/nxt_application.h @@ -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; } |