mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-11 17:16:38 +01:00
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:
parent
cadfc2aee1
commit
a65ab1d76c
1 changed files with 4 additions and 4 deletions
|
|
@ -815,13 +815,13 @@ ARDOUR_UI::check_memory_locking ()
|
||||||
"runs out of memory. \n\n"
|
"runs out of memory. \n\n"
|
||||||
"You can view the memory limit with 'ulimit -l', "
|
"You can view the memory limit with 'ulimit -l', "
|
||||||
"and it is normally controlled by %2"),
|
"and it is normally controlled by %2"),
|
||||||
PROGRAM_NAME).c_str(),
|
PROGRAM_NAME,
|
||||||
#ifdef __FreeBSD__
|
#ifdef __FreeBSD__
|
||||||
X_("/etc/login.conf")
|
X_("/etc/login.conf")
|
||||||
#else
|
#else
|
||||||
X_(" /etc/security/limits.conf")
|
X_(" /etc/security/limits.conf")
|
||||||
#endif
|
#endif
|
||||||
);
|
).c_str());
|
||||||
|
|
||||||
msg.set_default_response (RESPONSE_OK);
|
msg.set_default_response (RESPONSE_OK);
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue