aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Aaron Jones2026-03-11 08:54:23 +0000
committerGravatar Aaron Jones2026-03-11 08:56:34 +0000
commitffe62587cf7d57c7c9c68807f13ab46d0c010e36 (patch)
tree64e6acf2737b905c07d37780dd1986436dc52b2b
parentMake TAGMSG behave like NOTICE for errors (diff)
downloadsolanum-amdj/invite_notify.tar.gz
solanum-amdj/invite_notify.tar.bz2
solanum-amdj/invite_notify.zip
extensions/invite_notify: don't pass string to macro amdj/invite_notify
The macro does not use this parameter but nevertheless this is the only module in the tree to pass a string to it, and if a future macro were to use it, it could easily stringify the name by using the # preprocessor operator.
-rw-r--r--extensions/invite_notify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/invite_notify.c b/extensions/invite_notify.c
index 96e13f68..a0b8299c 100644
--- a/extensions/invite_notify.c
+++ b/extensions/invite_notify.c
@@ -76,4 +76,4 @@ m_invited(struct MsgBuf *msgbuf, struct Client *client_p, struct Client *source_
invite_notify(inviter, target, chptr);
}
-DECLARE_MODULE_AV2("invite_notify", NULL, NULL, inv_notify_clist, NULL, inv_notify_hfnlist, inv_notify_caplist, NULL, inv_notify_desc);
+DECLARE_MODULE_AV2(invite_notify, NULL, NULL, inv_notify_clist, NULL, inv_notify_hfnlist, inv_notify_caplist, NULL, inv_notify_desc);