13
0

%s is printf, this is ostream!

This commit is contained in:
Paul Davis 2020-05-30 11:35:40 -06:00
parent 9e054aff58
commit 54c1c0cc2c

View File

@ -93,7 +93,7 @@ RTTaskList::reset_thread_list ()
pthread_attr_init (&attr);
pthread_attr_setstacksize (&attr, PBD_RT_STACKSIZE_HELP);
if (pthread_create (&thread_id, &attr, _thread_run, this)) {
PBD::fatal << _("Cannot create thread for TaskList! (%s") << strerror(errno) << ')' << endmsg;
PBD::fatal << _("Cannot create thread for TaskList! (") << strerror(errno) << ')' << endmsg;
/* NOT REACHED */
}
pthread_attr_destroy (&attr);