mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-31 17:06:41 +00:00
Merge branch 'fix_crash_catcher_print' into 'master'
Use proper order for printf arguments See merge request OpenMW/openmw!4285
This commit is contained in:
commit
54c76203a7
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ namespace
|
|||
"\nFailed to create a crash report: %s.\n"
|
||||
"Please make sure that '%s' is installed and present in PATH then crash again.\n"
|
||||
"Current PATH: %s\n",
|
||||
T::sName, std::generic_category().message(errno).c_str(), getenv("PATH"));
|
||||
std::generic_category().message(errno).c_str(), T::sName, getenv("PATH"));
|
||||
else if (ret != 0)
|
||||
printf(
|
||||
"\nFailed to create a crash report.\n"
|
||||
|
|
Loading…
Reference in a new issue