Style fixes.

This commit is contained in:
Igor Sysoev
2019-10-10 19:42:41 +03:00
parent ec0d5c928e
commit 09e7357b08
7 changed files with 35 additions and 22 deletions

View File

@@ -19,7 +19,7 @@ nxt_inline void
nxt_hton16(uint8_t *b, uint16_t v)
{
b[0] = (v >> 8);
b[1] = (v & 0xFFu);
b[1] = (v & 0xFFu);
}