Fixed a typo preventing compilation on Linux

This commit is contained in:
Lukas Matena 2019-08-20 20:24:37 +02:00
parent 775a54846f
commit 6a22651501

View File

@ -68,7 +68,7 @@ int CLI::run(int argc, char **argv)
std::string text = std::string("An error occured while setting up locale.\n") + (
#if !defined(_WIN32) && !defined(__APPLE__)
// likely some linux system
"You may need to reconfigure the missing locales, likely by running the \"locale-gen\"" and \"dpkg-reconfigure locales\" commands.\n"
"You may need to reconfigure the missing locales, likely by running the \"locale-gen\" and \"dpkg-reconfigure locales\" commands.\n"
#endif
SLIC3R_APP_NAME " will now terminate.\n\n") + ex.what();
#if defined(_WIN32) && defined(SLIC3R_GUI)