diff options
author | Igor Sysoev <igor@sysoev.ru> | 2017-06-23 13:28:39 +0300 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2017-06-23 13:28:39 +0300 |
commit | 3fcda23f159ac23cd869cd2a702569d2b35ab9bb (patch) | |
tree | 149fa6bed54812d6d68bb596f2be4dffd7589717 /src/nxt_lvlhsh.c | |
parent | 9593ce769ac85c75d67c9bd4730f6ce95cab6502 (diff) | |
download | unit-3fcda23f159ac23cd869cd2a702569d2b35ab9bb.tar.gz unit-3fcda23f159ac23cd869cd2a702569d2b35ab9bb.tar.bz2 |
Style and comment fixes.
Diffstat (limited to 'src/nxt_lvlhsh.c')
-rw-r--r-- | src/nxt_lvlhsh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nxt_lvlhsh.c b/src/nxt_lvlhsh.c index 21fda895..bf730ada 100644 --- a/src/nxt_lvlhsh.c +++ b/src/nxt_lvlhsh.c @@ -858,8 +858,8 @@ nxt_lvlhsh_bucket_each(nxt_lvlhsh_each_t *lhe) if (lhe->entries == 0) { next = *nxt_lvlhsh_next_bucket(lhe->proto, lhe->bucket); - lhe->bucket = (next == NULL) ? NXT_LVLHSH_BUCKET_DONE: - nxt_lvlhsh_bucket(lhe->proto, next); + lhe->bucket = (next == NULL) ? NXT_LVLHSH_BUCKET_DONE + : nxt_lvlhsh_bucket(lhe->proto, next); lhe->entries = nxt_lvlhsh_bucket_entries(lhe->proto, next); lhe->entry = 0; |