From bdb7d262aadb2685f0cb7ef73840e479252e70d4 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 1 Oct 2021 16:20:31 +1000 Subject: Cleanup: clang-tidy warnings --- source/blender/sequencer/intern/modifier.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'source/blender/sequencer/intern') diff --git a/source/blender/sequencer/intern/modifier.c b/source/blender/sequencer/intern/modifier.c index 8414599b225..1a63f4c4655 100644 --- a/source/blender/sequencer/intern/modifier.c +++ b/source/blender/sequencer/intern/modifier.c @@ -302,9 +302,8 @@ static StripColorBalance calc_cb(StripColorBalance *cb_) if (cb_->method == SEQ_COLOR_BALANCE_METHOD_LIFTGAMMAGAIN) { return calc_cb_lgg(cb_); } - else { /* cb_->method == SEQ_COLOR_BALANCE_METHOD_SLOPEOFFSETPOWER */ - return calc_cb_sop(cb_); - } + /* `cb_->method == SEQ_COLOR_BALANCE_METHOD_SLOPEOFFSETPOWER`. */ + return calc_cb_sop(cb_); } /* NOTE: lift is actually 2-lift. */ -- cgit v1.2.3