From 3fce27ece5629a805a5d6c508f130170c6ccafab Mon Sep 17 00:00:00 2001 From: Paul Ouellette Date: Wed, 16 Jan 2019 07:39:13 -0500 Subject: Fix some misspellings (#8104) --- src/debug.cpp | 2 +- src/serverenvironment.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/debug.cpp b/src/debug.cpp index 1a467265c..3c82ed9e1 100644 --- a/src/debug.cpp +++ b/src/debug.cpp @@ -69,7 +69,7 @@ void fatal_error_fn(const char *msg, const char *file, errorstream << std::endl << "In thread " << std::hex << std::this_thread::get_id() << ":" << std::endl; errorstream << file << ":" << line << ": " << function - << ": A fatal error occured: " << msg << std::endl; + << ": A fatal error occurred: " << msg << std::endl; abort(); } diff --git a/src/serverenvironment.cpp b/src/serverenvironment.cpp index 4e75a7c80..076a1e28f 100644 --- a/src/serverenvironment.cpp +++ b/src/serverenvironment.cpp @@ -2149,7 +2149,7 @@ bool ServerEnvironment::migratePlayersDatabase(const GameParams &game_params, delete dstdb; } catch (BaseException &e) { - errorstream << "An error occured during migration: " << e.what() << std::endl; + errorstream << "An error occurred during migration: " << e.what() << std::endl; return false; } return true; @@ -2236,7 +2236,7 @@ bool ServerEnvironment::migrateAuthDatabase( } } catch (BaseException &e) { - errorstream << "An error occured during migration: " << e.what() + errorstream << "An error occurred during migration: " << e.what() << std::endl; return false; } -- cgit v1.2.3