From: Sadie Powell Date: Thu, 16 Jan 2020 17:37:51 +0000 (+0000) Subject: Fix a GCC shadowing warning. X-Git-Url: https://git.netwichtig.de/gitweb/?a=commitdiff_plain;h=2bf0722dde6938f3c423b0c3c8c494ce3f64437d;p=user%2Fhenk%2Fcode%2Finspircd.git Fix a GCC shadowing warning. --- diff --git a/include/modules/ctctags.h b/include/modules/ctctags.h index 6b7f81a4c..68b8bcfdc 100644 --- a/include/modules/ctctags.h +++ b/include/modules/ctctags.h @@ -68,8 +68,8 @@ private: AddTags(Tags); } - TagMessage(const char* sourcestr, const char* targetstr, const ClientProtocol::TagMap& Tags, char status = 0) - : ClientProtocol::Message("TAGMSG", sourcestr) + TagMessage(const char* source, const char* targetstr, const ClientProtocol::TagMap& Tags, char status = 0) + : ClientProtocol::Message("TAGMSG", source) { PushTarget(targetstr, status); AddTags(Tags);