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.
This commit is contained in:
@@ -1350,11 +1350,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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user