Fix mismatching parenthesis in translatable string

This commit is contained in:
Robin Gareus 2020-06-21 16:59:28 +02:00
parent 6c273e28f2
commit ff8a6dd328
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -93,7 +93,7 @@ RTTaskList::reset_thread_list ()
rv = pbd_pthread_create (PBD_RT_STACKSIZE_HELP, &thread_id, _thread_run, this); rv = pbd_pthread_create (PBD_RT_STACKSIZE_HELP, &thread_id, _thread_run, this);
} }
if (rv) { if (rv) {
PBD::fatal << _("Cannot create thread for TaskList! (") << strerror(rv) << ')' << endmsg; PBD::fatal << _("Cannot create thread for TaskList!") << " (" << strerror(rv) << ")" << endmsg;
/* NOT REACHED */ /* NOT REACHED */
} }
pbd_mach_set_realtime_policy (thread_id, 5. * 1e-5); pbd_mach_set_realtime_policy (thread_id, 5. * 1e-5);