summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_application.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nxt_application.h')
-rw-r--r--src/nxt_application.h8
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;
}