From: Alan T. DeKok Date: Thu, 14 Dec 2023 15:08:42 +0000 (-0500) Subject: remove unnecessary fall-through X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2bf146e4d0dd1e17a55ae904e4de49cc49ebb7d0;p=thirdparty%2Ffreeradius-server.git remove unnecessary fall-through --- diff --git a/src/lib/unlang/interpret.c b/src/lib/unlang/interpret.c index 2bbd7427bc6..c73ebb4238a 100644 --- a/src/lib/unlang/interpret.c +++ b/src/lib/unlang/interpret.c @@ -724,14 +724,13 @@ unlang_frame_action_t frame_eval(request_t *request, unlang_stack_frame_t *frame default: break; } - - FALL_THROUGH; + break; /* * Execute the next instruction in this frame */ case UNLANG_ACTION_EXECUTE_NEXT: - if ((ua == UNLANG_ACTION_EXECUTE_NEXT) && unlang_ops[instruction->type].debug_braces) { + if (unlang_ops[instruction->type].debug_braces) { REXDENT(); RDEBUG2("}"); }