0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 12:48:54 +02:00

Compensate for my obviously diminished faculties.

This commit is contained in:
Elizabeth Myers 2016-03-07 03:42:43 -06:00
parent 02369fa767
commit 8699801ca2
3 changed files with 3 additions and 3 deletions

View file

@ -13,7 +13,7 @@ struct Message echotags_msgtab = {
mapi_clist_av1 echotags_clist[] = { &echotags_msgtab, NULL };
static const char echotags_desc = "A test module for tags";
static const char echotags_desc[] = "A test module for tags";
DECLARE_MODULE_AV2(echotags, NULL, NULL, echotags_clist, NULL, NULL, NULL, NULL, echotags_desc);

View file

@ -41,7 +41,7 @@ struct Message extendchans_msgtab = {
mapi_clist_av1 extendchans_clist[] = { &extendchans_msgtab, NULL };
static const char extendchans_desc =
static const char extendchans_desc[] =
"Allow an oper or service to let a given user join more channels";
DECLARE_MODULE_AV2(extendchans, NULL, NULL, extendchans_clist, NULL, NULL, NULL, NULL, extendchans_desc);

View file

@ -44,7 +44,7 @@ struct Message findforwards_msgtab = {
mapi_clist_av1 findforwards_clist[] = { &findforwards_msgtab, NULL };
static const char findfowards_desc = "Allows operators to find forwards to a given channel";
static const char findfowards_desc[] = "Allows operators to find forwards to a given channel";
DECLARE_MODULE_AV2(findforwards, NULL, NULL, findforwards_clist, NULL, NULL, NULL, NULL, findfowards_desc);