diff options
author | Rosen Penev <rosenp@gmail.com> | 2020-04-17 14:15:24 -0700 |
---|---|---|
committer | Hans Verkuil <hverkuil-cisco@xs4all.nl> | 2020-04-20 14:40:14 +0200 |
commit | ce8ed12c95eeb628febfff04abe9fae4d6f410bf (patch) | |
tree | 698d0ccf0dbbc229d1410b2842c5b30ae6ef421a /utils/cec-follower/cec-processing.cpp | |
parent | 06dc2b0c0e9705d5d4607c89dfc7decf714a68d6 (diff) |
treewide: do not use return after else
Found with clang-tidy's readability-else-after-return
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
[hverkuil-cisco@xs4all.nl: split '} if () {' into two lines]
[hverkuil-cisco@xs4all.nl: split 'if () continue; else return -1;' into two lines]
Diffstat (limited to 'utils/cec-follower/cec-processing.cpp')
-rw-r--r-- | utils/cec-follower/cec-processing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/cec-follower/cec-processing.cpp b/utils/cec-follower/cec-processing.cpp index 373519fc..511b3ba7 100644 --- a/utils/cec-follower/cec-processing.cpp +++ b/utils/cec-follower/cec-processing.cpp @@ -692,8 +692,8 @@ static void processMsg(struct node *node, struct cec_msg &msg, unsigned me) signalize that we support SAC. */ if (cec_has_tv(1 << me)) return; - else - break; + + break; } cec_ops_set_system_audio_mode(&msg, &system_audio_status); if (system_audio_status == CEC_OP_SYS_AUD_STATUS_ON) |