summaryrefslogtreecommitdiff
path: root/src/modmanager_static.cpp
diff options
context:
space:
mode:
authorattilamolnar <attilamolnar@hush.com>2012-12-03 18:11:18 +0100
committerattilamolnar <attilamolnar@hush.com>2012-12-03 21:24:59 +0100
commita99f41c3ebdb464518d18d83a45f1e0ad86d9d88 (patch)
tree1d9688438307846e63c9451f217dc7ccfb679bc9 /src/modmanager_static.cpp
parentd86426f359dcc5eef5a5534e6579af7b38b5beed (diff)
Fix typos in ebdaf368e137fc933e648ee88a08a4f83e796f87
Diffstat (limited to 'src/modmanager_static.cpp')
-rw-r--r--src/modmanager_static.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modmanager_static.cpp b/src/modmanager_static.cpp
index b105eea92..69420a4f9 100644
--- a/src/modmanager_static.cpp
+++ b/src/modmanager_static.cpp
@@ -194,7 +194,7 @@ void ModuleManager::LoadAll()
if (!this->Load(name, true))
{
ServerInstance->Logs->Log("MODULE", DEFAULT, this->LastError());
- std::cout << std::endl << "[" << con_red << "*" << con_reset << "]" << this->LastError() << std::endl << std::endl;
+ std::cout << std::endl << "[" << con_red << "*" << con_reset << "] " << this->LastError() << std::endl << std::endl;
ServerInstance->Exit(EXIT_STATUS_MODULE);
}
}
@@ -210,7 +210,7 @@ void ModuleManager::LoadAll()
{
LastModuleError = "Unable to initialize " + mod->ModuleSourceFile + ": " + modexcept.GetReason();
ServerInstance->Logs->Log("MODULE", DEFAULT, LastModuleError);
- std::cout << std::endl << "[" << con_red << "*" << con_reset << "]" << LastModuleError << std::endl << std::endl;
+ std::cout << std::endl << "[" << con_red << "*" << con_reset << "] " << LastModuleError << std::endl << std::endl;
ServerInstance->Exit(EXIT_STATUS_MODULE);
}
}