aboutsummaryrefslogtreecommitdiff
path: root/include/modules
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-07-03 13:58:34 +0100
committerGravatar Sadie Powell2021-07-03 13:58:34 +0100
commit4350050a82df2c90db4a2ca4fe3ae75a8a343e08 (patch)
tree0c2d4f450b8ab975ef17b04de0dbeb78946ca5bf /include/modules
parentUpdate the IRCCloud example config for the latest host changes. (diff)
Fix some "targ" usages which were missed in the earlier commit.
Diffstat (limited to 'include/modules')
-rw-r--r--include/modules/whois.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/modules/whois.h b/include/modules/whois.h
index 2ac46dcd4..0e8fbc84a 100644
--- a/include/modules/whois.h
+++ b/include/modules/whois.h
@@ -91,9 +91,9 @@ class Whois::Context
User* const target;
public:
- Context(LocalUser* src, User* targ)
- : source(src)
- , target(targ)
+ Context(LocalUser* sourceuser, User* targetuser)
+ : source(sourceuser)
+ , target(targetuser)
{
}