Mixer: Fix typo in plugin error message.

pull/116/head
Jonathan Moore Liles 2013-09-14 16:47:17 -07:00
parent a9d547e794
commit 8675f7d31c
1 changed files with 1 additions and 4 deletions

View File

@ -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;
}