diff options
author | Valentin Bartenev <vbart@nginx.com> | 2017-05-10 19:26:56 +0300 |
---|---|---|
committer | Valentin Bartenev <vbart@nginx.com> | 2017-05-10 19:26:56 +0300 |
commit | 9d16e1808b66dc9b747b152fb9ca2ab9f88528f3 (patch) | |
tree | ae4b17f5871a1261e2d95fe30897b0f4bef7242e /test | |
parent | ed38d86abbea981dd3120c5929541c14d667c1ff (diff) | |
download | unit-9d16e1808b66dc9b747b152fb9ca2ab9f88528f3.tar.gz unit-9d16e1808b66dc9b747b152fb9ca2ab9f88528f3.tar.bz2 |
Added one more missing "fall through" comment in tests.
Diffstat (limited to 'test')
-rw-r--r-- | test/nxt_lvlhsh_unit_test.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/nxt_lvlhsh_unit_test.c b/test/nxt_lvlhsh_unit_test.c index 8431ca89..c4dac2f0 100644 --- a/test/nxt_lvlhsh_unit_test.c +++ b/test/nxt_lvlhsh_unit_test.c @@ -72,6 +72,7 @@ nxt_lvlhsh_unit_test_add(nxt_lvlhsh_t *lh, const nxt_lvlhsh_proto_t *proto, case NXT_DECLINED: nxt_thread_log_alert("lvlhsh unit test failed: " "key %p is already in hash", key); + /* Fall through. */ default: return NXT_ERROR; } |