Fix a compiler warning (optimized builds)

This commit is contained in:
Robin Gareus 2017-06-12 12:47:48 +02:00
parent 140ce4daec
commit c69049a853
2 changed files with 4 additions and 1 deletions

View File

@ -918,6 +918,9 @@ FaderPort8::filter_stripables (StripableList& strips) const
case MixFX:
flt = &flt_auxbus;
break;
default:
assert (0);
// fall through
case MixAll:
allow_master = true;
flt = &flt_all;

View File

@ -155,7 +155,7 @@ namespace FP8Types {
MixMIDI,
MixOutputs,
MixFX,
MixUser,
MixUser
};
};