From ff81c9bab8e1eddf044d7cb5d06d44b4a43c95d8 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 29 May 2017 17:38:39 -0400 Subject: Fixup some compilation warnings --- src/command.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/command.cpp') diff --git a/src/command.cpp b/src/command.cpp index 7d5b9e46c..57203aba2 100644 --- a/src/command.cpp +++ b/src/command.cpp @@ -73,9 +73,9 @@ const Anope::string &CommandSource::GetCommand() const return this->command.cname; } -void CommandSource::SetCommand(const Anope::string &command) +void CommandSource::SetCommand(const Anope::string &com) { - this->command.cname = command; + this->command.cname = com; } const Anope::string &CommandSource::GetPermission() const -- cgit