summaryrefslogtreecommitdiffhomepage
path: root/src/nxt_lvlhsh.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nxt_lvlhsh.c')
-rw-r--r--src/nxt_lvlhsh.c4
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;