From 54c1c0cc2c4e40ecf3787562420905547ad3e8c5 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 30 May 2020 11:35:40 -0600 Subject: [PATCH] %s is printf, this is ostream! --- libs/ardour/rt_tasklist.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/rt_tasklist.cc b/libs/ardour/rt_tasklist.cc index be9a5a79b5..bce81f80fb 100644 --- a/libs/ardour/rt_tasklist.cc +++ b/libs/ardour/rt_tasklist.cc @@ -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);