summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Server.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Server.cpp b/src/Server.cpp
index 67315c8cf..db3ab2ed4 100644
--- a/src/Server.cpp
+++ b/src/Server.cpp
@@ -493,9 +493,9 @@ void cServer::ExecuteConsoleCommand(const AString & a_Cmd, cCommandOutputCallbac
{
cPluginManager::PluginMap map = cPluginManager::Get()->GetAllPlugins();
- for(auto plugin_entry : map)
+ for (auto plugin_entry : map)
{
- if(plugin_entry.first == split[1])
+ if (plugin_entry.first == split[1])
{
a_Output.Out("Error! Plugin is already loaded!");
a_Output.Finished();