RemoteVstPlugin: removed obsolete warning

Removed obsolete warning about setting realtime. It's neither important
nor will calling printf()/fprintf() in a RemotePlugin print anything in
LMMS' console output.
(cherry picked from commit 337afffbf1)
This commit is contained in:
Tobias Doerffel
2009-04-10 00:04:09 +02:00
parent 40627ffc53
commit 4ec030b518

View File

@@ -1296,11 +1296,7 @@ int main( int _argc, char * * _argv )
struct sched_param sparam;
sparam.sched_priority = ( sched_get_priority_max( SCHED_FIFO ) +
sched_get_priority_min( SCHED_FIFO ) ) / 2;
if( sched_setscheduler( 0, SCHED_FIFO, &sparam ) == -1 )
{
fprintf( stderr, "could not set realtime priority for "
"remoteVstPlugin\n" );
}
sched_setscheduler( 0, SCHED_FIFO, &sparam );
#endif
#endif