From 8675f7d31c40481340651eded85209611501881e Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Sat, 14 Sep 2013 16:47:17 -0700 Subject: [PATCH] Mixer: Fix typo in plugin error message. --- mixer/src/LADSPAInfo.C | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/mixer/src/LADSPAInfo.C b/mixer/src/LADSPAInfo.C index 3c115c0..b3f96eb 100644 --- a/mixer/src/LADSPAInfo.C +++ b/mixer/src/LADSPAInfo.C @@ -769,10 +769,7 @@ LADSPAInfo::CheckPlugin(const LADSPA_Descriptor *desc) "WARNING: Plugin cannot use in place processing"); test(desc->PortCount, "WARNING: Plugin has no ports"); test(desc->Name, "WARNING: Plugin has no name" ); - - test( !( LADSPA_IS_INPLACE_BROKEN( desc->Properties ) ), "WARNING: plugin inplace processing is broken" ); - - test ( LADSPA_IS_HARD_RT_CAPABLE( desc->Properties ), "WARNING: Plugin is not RT incapable" ); + test(LADSPA_IS_HARD_RT_CAPABLE( desc->Properties ), "WARNING: Plugin is not RT capable" ); return true; }