diff options
author | Adam <Adam@anope.org> | 2017-05-29 17:38:39 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2017-05-29 17:38:39 -0400 |
commit | ff81c9bab8e1eddf044d7cb5d06d44b4a43c95d8 (patch) | |
tree | bfed822d690999f2c4458a30a65c232210b1e9cc /src/command.cpp | |
parent | 3f143633541a5361bf5b02b0d69b65447aea7b79 (diff) |
Fixup some compilation warnings
Diffstat (limited to 'src/command.cpp')
-rw-r--r-- | src/command.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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 |