update bsd patch/bld for yuri
[goodguy/cinelerra.git] / cinelerra-5.1 / guicast / thread.C
index dff53e61ec4e5eb656a09236f4486ef680ee7484..50b52a47cc52069f5becc3c37d189757884aaee1 100644 (file)
@@ -55,7 +55,7 @@ void* Thread::entrypoint(void *parameters)
        pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
        thread->cancel_enabled = false;
 
-// Set realtime here seince it doesn't work in start
+// Set realtime here since it doesn't work in start
        if( thread->realtime && getuid() == 0 ) {
                struct sched_param param = { sched_priority : 1 };
                if(pthread_setschedparam(thread->tid, SCHED_RR, &param) < 0)