diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-03-18 02:46:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-03-18 02:46:11 +0300 |
commit | 718cc20f00d8724c79d2c0e928696b476119af6d (patch) | |
tree | 93aff7f1d62e35341336b861495d8d4a989b8eba /src/logger.cpp | |
parent | 393ab30aff714f9054ceea626fa5ba5447eee16d (diff) | |
download | plus-718cc20f00d8724c79d2c0e928696b476119af6d.tar.gz plus-718cc20f00d8724c79d2c0e928696b476119af6d.tar.bz2 plus-718cc20f00d8724c79d2c0e928696b476119af6d.tar.xz plus-718cc20f00d8724c79d2c0e928696b476119af6d.zip |
Fix typos.
Diffstat (limited to 'src/logger.cpp')
-rw-r--r-- | src/logger.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/logger.cpp b/src/logger.cpp index c2538803d..2368f6f2e 100644 --- a/src/logger.cpp +++ b/src/logger.cpp @@ -368,7 +368,7 @@ void Logger::error(const std::string &error_text) // (ConstStr255Param) msg, nullptr, nullptr); #elif defined(__linux__) || defined(_linux) std::cerr << "Error: " << error_text << std::endl; - const std::string msg("xmessage \"Error happend. " + const std::string msg("xmessage \"Error happened. " "Please see log file for more information.\""); if (system(msg.c_str()) == -1) std::cerr << "Error: " << error_text << std::endl; |