13
0

Candidate fix for 0005480: Text in warning window for memory limit not displayed in full. Conf file path was not being passed to string_compose constructor

This commit is contained in:
johnwpoliver 2013-05-12 23:40:15 +01:00
parent cadfc2aee1
commit a65ab1d76c

View File

@ -815,13 +815,13 @@ ARDOUR_UI::check_memory_locking ()
"runs out of memory. \n\n"
"You can view the memory limit with 'ulimit -l', "
"and it is normally controlled by %2"),
PROGRAM_NAME).c_str(),
PROGRAM_NAME,
#ifdef __FreeBSD__
X_("/etc/login.conf")
X_("/etc/login.conf")
#else
X_(" /etc/security/limits.conf")
X_(" /etc/security/limits.conf")
#endif
);
).c_str());
msg.set_default_response (RESPONSE_OK);