summaryrefslogtreecommitdiff
path: root/src/send.cpp
diff options
context:
space:
mode:
authorNaram Qashat <cyberbotx@cyberbotx.com>2010-07-26 23:32:03 -0400
committerNaram Qashat <cyberbotx@cyberbotx.com>2010-07-26 23:32:03 -0400
commit57bb7593059242652c57aae4391b45416dc7fa70 (patch)
tree80b1b21308a0ce7e55bc5b8e278ed6cc95c07e8c /src/send.cpp
parent6e6b6b46aabfb3e558f66bd0fdc528e93505cf76 (diff)
Trying to make things a little more const-safe, a work in progress but this is a bit better.
Diffstat (limited to 'src/send.cpp')
-rw-r--r--src/send.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/send.cpp b/src/send.cpp
index f04e937c2..7f724a1e2 100644
--- a/src/send.cpp
+++ b/src/send.cpp
@@ -63,7 +63,7 @@ void send_cmd(const Anope::string &source, const char *fmt, ...)
* @param ... any number of parameters
* @return void
*/
-void notice_server(const Anope::string &source, Server *s, const char *fmt, ...)
+void notice_server(const Anope::string &source, const Server *s, const char *fmt, ...)
{
va_list args;
char buf[BUFSIZE] = "";