From 13216269d3be0fa537aca170ee2474b7818bed7c Mon Sep 17 00:00:00 2001 From: Remco Rijnders Date: Sun, 5 Jul 2009 08:01:37 +0200 Subject: [PATCH] Fixed compile time error. --- src/channel.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/channel.c b/src/channel.c index 167fe1c..525b481 100644 --- a/src/channel.c +++ b/src/channel.c @@ -3956,7 +3956,8 @@ int m_list (cptr, sptr, parc, parv) * 1 person on, to decrease floods... -Donwulff */ bzero (lopt, sizeof (LOpts)); /* To be sure! */ - lopt->next = (LOpts *) lopt->yeslist = lopt->nolist = (Link *) NULL; + lopt->next = (LOpts *) NULL; + lopt->yeslist = lopt->nolist = (Link *) NULL; lopt->usermin = 0; /* Default */ lopt->usermax = -1; lopt->chantimemax = lopt->topictimemax = currenttime + 86400; -- 2.30.2