Style: capitalized letters in hexadecimal literals.

This commit is contained in:
Valentin Bartenev
2018-04-04 18:13:05 +03:00
parent 43ba7aad6c
commit 0665896a55
24 changed files with 633 additions and 633 deletions

View File

@@ -292,7 +292,7 @@ nxt_app_msg_read_length(u_char *src, size_t *length)
src++;
} else {
*length = ((src[0] & 0x7fU) << 24) +
*length = ((src[0] & 0x7FU) << 24) +
(src[1] << 16) +
(src[2] << 8) +
src[3];