diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-09-06 02:30:55 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-09-06 02:30:55 +0300 |
commit | 58907888e510f6907513da2ea4506ee78b9bf77c (patch) | |
tree | 1d16cf9fb4ad4d21c23b3c825c48408b75a13ef4 /src/nxt_port_socket.c | |
parent | 22ae3d4ff55ae778688a89c585b5da8eddce6cc0 (diff) | |
download | unit-58907888e510f6907513da2ea4506ee78b9bf77c.tar.gz unit-58907888e510f6907513da2ea4506ee78b9bf77c.tar.bz2 |
Style fixes.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_port_socket.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nxt_port_socket.c b/src/nxt_port_socket.c index 82a6e0aa..3f7ad954 100644 --- a/src/nxt_port_socket.c +++ b/src/nxt_port_socket.c @@ -176,10 +176,10 @@ nxt_port_socket_write(nxt_task_t *task, nxt_port_t *port, nxt_uint_t type, continue; } - if (msg->port_msg.stream == stream && - msg->port_msg.reply_port == reply_port && - msg->port_msg.last == 0 && - msg->opened) { + if (msg->port_msg.stream == stream + && msg->port_msg.reply_port == reply_port + && msg->port_msg.last == 0 + && msg->opened) { /* * An fd is ignored since a file descriptor |