summaryrefslogtreecommitdiff
path: root/libs/ardour/session_feedback.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2005-10-06 19:10:57 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2005-10-06 19:10:57 +0000
commit4c509656223d3ed1f0fab504cb483090d38972f9 (patch)
tree540f207b81f957fa78101d67da3094ff1e1f9456 /libs/ardour/session_feedback.cc
parent5a52d8fee4c9abac7ffb1f1e6464785d979acd68 (diff)
fix compose mess, and a number of 64 bit printf specs
git-svn-id: svn://localhost/trunk/ardour2@51 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_feedback.cc')
-rw-r--r--libs/ardour/session_feedback.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/libs/ardour/session_feedback.cc b/libs/ardour/session_feedback.cc
index d3025cef50..c2198aa55d 100644
--- a/libs/ardour/session_feedback.cc
+++ b/libs/ardour/session_feedback.cc
@@ -48,19 +48,19 @@ int
Session::init_feedback ()
{
if (pipe (feedback_request_pipe) != 0) {
- error << compose (_("cannot create feedback request pipe (%1)"),
+ error << string_compose (_("cannot create feedback request pipe (%1)"),
strerror (errno))
<< endmsg;
return -1;
}
if (fcntl (feedback_request_pipe[0], F_SETFL, O_NONBLOCK)) {
- error << compose(_("UI: cannot set O_NONBLOCK on " "signal read pipe (%1)"), strerror (errno)) << endmsg;
+ error << string_compose(_("UI: cannot set O_NONBLOCK on " "signal read pipe (%1)"), strerror (errno)) << endmsg;
return -1;
}
if (fcntl (feedback_request_pipe[1], F_SETFL, O_NONBLOCK)) {
- error << compose(_("UI: cannot set O_NONBLOCK on " "signal write pipe (%1)"), strerror (errno)) << endmsg;
+ error << string_compose(_("UI: cannot set O_NONBLOCK on " "signal write pipe (%1)"), strerror (errno)) << endmsg;
return -1;
}
@@ -138,7 +138,7 @@ Session::feedback_thread_work ()
if (errno == EINTR) {
continue;
}
- error << compose (_("Feedback thread poll failed (%1)"),
+ error << string_compose (_("Feedback thread poll failed (%1)"),
strerror (errno))
<< endmsg;
break;