From 4c509656223d3ed1f0fab504cb483090d38972f9 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 6 Oct 2005 19:10:57 +0000 Subject: fix compose mess, and a number of 64 bit printf specs git-svn-id: svn://localhost/trunk/ardour2@51 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_click.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libs/ardour/session_click.cc') diff --git a/libs/ardour/session_click.cc b/libs/ardour/session_click.cc index 6bf62bb272..d97d29cc18 100644 --- a/libs/ardour/session_click.cc +++ b/libs/ardour/session_click.cc @@ -145,7 +145,7 @@ Session::setup_click_sounds (int which) if ((sndfile = sf_open (click_sound.c_str(), SFM_READ, &info)) == 0) { char errbuf[256]; sf_error_str (0, errbuf, sizeof (errbuf) - 1); - warning << compose (_("cannot open click soundfile %1 (%2)"), click_sound, errbuf) << endmsg; + warning << string_compose (_("cannot open click soundfile %1 (%2)"), click_sound, errbuf) << endmsg; _clicking = false; return; } @@ -179,7 +179,7 @@ Session::setup_click_sounds (int which) if ((sndfile = sf_open (click_emphasis_sound.c_str(), SFM_READ, &info)) == 0) { char errbuf[256]; sf_error_str (0, errbuf, sizeof (errbuf) - 1); - warning << compose (_("cannot open click emphasis soundfile %1 (%2)"), click_emphasis_sound, errbuf) << endmsg; + warning << string_compose (_("cannot open click emphasis soundfile %1 (%2)"), click_emphasis_sound, errbuf) << endmsg; return; } -- cgit v1.2.3