summaryrefslogtreecommitdiff
path: root/libs/ardour/globals.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-12-09 01:27:55 +0100
committerRobin Gareus <robin@gareus.org>2018-12-09 01:27:55 +0100
commitdd2e80467bed5e48fa5c38c62581c966a9c7fce7 (patch)
tree60a7522ca51d5176cec39162b7a0d94b6ef5f1c1 /libs/ardour/globals.cc
parent2dc3c8b3650266eba09cf7fe53c39c6728d4d5b6 (diff)
"only" 1048576 -- sounds like it's not sufficient
Diffstat (limited to 'libs/ardour/globals.cc')
-rw-r--r--libs/ardour/globals.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index eca6d44de2..77aff20c1a 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -269,7 +269,7 @@ lotsa_files_please ()
}
} else {
if (rl.rlim_cur != RLIM_INFINITY) {
- info << string_compose (_("Your system is configured to limit %1 to only %2 open files"), PROGRAM_NAME, rl.rlim_cur) << endmsg;
+ info << string_compose (_("Your system is configured to limit %1 to %2 open files"), PROGRAM_NAME, rl.rlim_cur) << endmsg;
}
}
} else {
@@ -286,7 +286,7 @@ lotsa_files_please ()
*/
int newmax = _setmaxstdio (2048);
if (newmax > 0) {
- info << string_compose (_("Your system is configured to limit %1 to only %2 open files"), PROGRAM_NAME, newmax) << endmsg;
+ info << string_compose (_("Your system is configured to limit %1 to %2 open files"), PROGRAM_NAME, newmax) << endmsg;
} else {
error << string_compose (_("Could not set system open files limit. Current limit is %1 open files"), _getmaxstdio()) << endmsg;
}