summaryrefslogtreecommitdiff
path: root/libs/ardour/globals.cc
diff options
context:
space:
mode:
authorTim Mayberry <mojofunk@gmail.com>2017-01-05 10:06:17 +1000
committerTim Mayberry <mojofunk@gmail.com>2017-01-05 10:06:17 +1000
commit0eedb7f86609c0d9ec9ecc7a0b77fa949d158937 (patch)
tree072cc048edae2c96647931fecd4065717bb74162 /libs/ardour/globals.cc
parent30ca09ca884607f8335f8fc2a542c8233202f6cb (diff)
Add missing function call in error message when compiling for windows
Diffstat (limited to 'libs/ardour/globals.cc')
-rw-r--r--libs/ardour/globals.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/globals.cc b/libs/ardour/globals.cc
index 6ff46651e6..fb496b5c74 100644
--- a/libs/ardour/globals.cc
+++ b/libs/ardour/globals.cc
@@ -284,7 +284,7 @@ lotsa_files_please ()
if (newmax > 0) {
info << string_compose (_("Your system is configured to limit %1 to only %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;
+ error << string_compose (_("Could not set system open files limit. Current limit is %1 open files"), _getmaxstdio()) << endmsg;
}
#endif
}