summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_runtime.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2017-09-06 02:30:55 +0300
committerIgor Sysoev <igor@sysoev.ru>2017-09-06 02:30:55 +0300
commit58907888e510f6907513da2ea4506ee78b9bf77c (patch)
tree1d16cf9fb4ad4d21c23b3c825c48408b75a13ef4 /src/nxt_runtime.c
parent22ae3d4ff55ae778688a89c585b5da8eddce6cc0 (diff)
downloadunit-58907888e510f6907513da2ea4506ee78b9bf77c.tar.gz
unit-58907888e510f6907513da2ea4506ee78b9bf77c.tar.bz2
Style fixes.
Diffstat (limited to '')
-rw-r--r--src/nxt_runtime.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/nxt_runtime.c b/src/nxt_runtime.c
index d18eab0a..f569f3f2 100644
--- a/src/nxt_runtime.c
+++ b/src/nxt_runtime.c
@@ -1571,8 +1571,9 @@ nxt_runtime_lvlhsh_pid_test(nxt_lvlhsh_query_t *lhq, void *data)
process = data;
- if (lhq->key.length == sizeof(nxt_pid_t) &&
- *(nxt_pid_t *) lhq->key.start == process->pid) {
+ if (lhq->key.length == sizeof(nxt_pid_t)
+ && *(nxt_pid_t *) lhq->key.start == process->pid)
+ {
return NXT_OK;
}