13
0

Add missing function call in error message when compiling for windows

This commit is contained in:
Tim Mayberry 2017-01-05 10:06:17 +10:00
parent 30ca09ca88
commit 0eedb7f866

View File

@ -284,7 +284,7 @@ lotsa_files_please ()
if (newmax > 0) { 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 only %2 open files"), PROGRAM_NAME, newmax) << endmsg;
} else { } 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 #endif
} }