summaryrefslogtreecommitdiff
path: root/src/send.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:09 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:09 +0000
commitaa806eba53a7ccc715839bd972c9b158f39b6225 (patch)
tree8e29db334836fbcf4ab869209f34907821f1dacd /src/send.c
parentc5e113ee056b28ff39232f28faf208163c6c86f0 (diff)
Constify a lot of the API. Core now "builds".
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1182 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/send.c')
-rw-r--r--src/send.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/send.c b/src/send.c
index 8a827a1db..9190ee52c 100644
--- a/src/send.c
+++ b/src/send.c
@@ -218,7 +218,7 @@ void notice_lang(const char *source, User * dest, int message, ...)
* @param ... any number of parameters
* @return void
*/
-void notice_help(char *source, User * dest, int message, ...)
+void notice_help(const char *source, User * dest, int message, ...)
{
va_list args;
char buf[4096], buf2[4096], outbuf[BUFSIZE];
@@ -325,7 +325,7 @@ void privmsg(char *source, char *dest, const char *fmt, ...)
* @param ... any number of parameters
* @return void
*/
-void wallops(char *source, const char *fmt, ...)
+void wallops(const char *source, const char *fmt, ...)
{
va_list args;
char buf[BUFSIZE];