From 434221f864a51cb093e4dee24db4e512e3d490c9 Mon Sep 17 00:00:00 2001 From: michael Date: Sun, 11 Jan 2015 12:57:18 +0000 Subject: [PATCH] - stats.c:stats_output(): const-correctness git-svn-id: svn://svn.ircd-hybrid.org/svnroot/hopm/trunk@5348 82007160-df01-0410-b94d-b575c5fd34c7 --- src/stats.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stats.c b/src/stats.c index 2e4650e..49130e4 100644 --- a/src/stats.c +++ b/src/stats.c @@ -158,7 +158,7 @@ stats_output(const char *target) LIST_FOREACH(p, OpmItem->blacklists->head) { - struct BlacklistConf *bl = p->data; + const struct BlacklistConf *bl = p->data; if (bl->stats_recv > 0) irc_send("PRIVMSG %s :DNSBL: %u successful lookups from %s", -- 2.30.2