From 5206e71bdbcf3598db71671ed6130387cd6a67c7 Mon Sep 17 00:00:00 2001 From: J-P Nurmi Date: Wed, 10 Sep 2014 16:47:50 +0200 Subject: [PATCH] Fix CModules::LoadModule() return message handling [ >> ] This is an example[This is an example] [/path/to/mod.so] becomes: [ >> ] This is an example [/path/to/mod.so] --- src/Modules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Modules.cpp b/src/Modules.cpp index 20b0d6af..dd55f26a 100644 --- a/src/Modules.cpp +++ b/src/Modules.cpp @@ -1077,7 +1077,7 @@ bool CModules::LoadModule(const CString& sModule, const CString& sArgs, CModInfo } if (!sRetMsg.empty()) { - sRetMsg += "[" + sRetMsg + "] "; + sRetMsg += " "; } sRetMsg += "[" + sModPath + "]"; return true;