Skip to content

Commit

Permalink
Correct mixer_type switch bracing style
Browse files Browse the repository at this point in the history
  • Loading branch information
tbolin committed Feb 24, 2023
1 parent 33c85f6 commit 4d0c340
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/flight/mixer.c
Expand Up @@ -683,8 +683,7 @@ FAST_CODE_NOINLINE void mixTable(timeUs_t currentTimeUs)

motorMixRange = motorMixMax - motorMixMin;

switch (mixerConfig()->mixer_type)
{
switch (mixerConfig()->mixer_type) {
case MIXER_LEGACY:
applyMixerAdjustment(motorMix, motorMixMin, motorMixMax, airmodeEnabled);
break;
Expand Down

0 comments on commit 4d0c340

Please sign in to comment.