diff options
author | Naram Qashat <cyberbotx@cyberbotx.com> | 2010-07-26 23:32:03 -0400 |
---|---|---|
committer | Naram Qashat <cyberbotx@cyberbotx.com> | 2010-07-26 23:32:03 -0400 |
commit | 57bb7593059242652c57aae4391b45416dc7fa70 (patch) | |
tree | 80b1b21308a0ce7e55bc5b8e278ed6cc95c07e8c /src/send.cpp | |
parent | 6e6b6b46aabfb3e558f66bd0fdc528e93505cf76 (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.cpp | 2 |
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] = ""; |