diff --git a/plugins/vst_base/remote_vst_plugin.cpp b/plugins/vst_base/remote_vst_plugin.cpp index 3b59bac9e..cb636741e 100644 --- a/plugins/vst_base/remote_vst_plugin.cpp +++ b/plugins/vst_base/remote_vst_plugin.cpp @@ -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