diff options
author | Igor Sysoev <igor@sysoev.ru> | 2019-10-10 19:42:41 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2019-10-10 19:42:41 +0300 |
commit | 09e7357b085aab4f29bdadceee112bd7a8ccf706 (patch) | |
tree | e40a03d49ffd99d436adb8715e585763aa061b59 /src/nxt_router.c | |
parent | ec0d5c928efcfb2d4958246d686718cb9747f722 (diff) | |
download | unit-09e7357b085aab4f29bdadceee112bd7a8ccf706.tar.gz unit-09e7357b085aab4f29bdadceee112bd7a8ccf706.tar.bz2 |
Style fixes.
Diffstat (limited to 'src/nxt_router.c')
-rw-r--r-- | src/nxt_router.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nxt_router.c b/src/nxt_router.c index 28781600..1e6e16aa 100644 --- a/src/nxt_router.c +++ b/src/nxt_router.c @@ -1458,7 +1458,8 @@ nxt_router_conf_create(nxt_task_t *task, nxt_router_temp_conf_t *tmcf, next = 0; for ( ;; ) { - application = nxt_conf_next_object_member(applications, &name, &next); + application = nxt_conf_next_object_member(applications, + &name, &next); if (application == NULL) { break; } |