Fixed compile time error.
authorRemco Rijnders <remco@webconquest.com>
Sun, 5 Jul 2009 06:01:37 +0000 (08:01 +0200)
committerRemco Rijnders <remco@webconquest.com>
Sun, 5 Jul 2009 06:01:37 +0000 (08:01 +0200)
src/channel.c

index 167fe1c809c60f387c40a7a7d05f04a50456b6fe..525b4811a2459644163de8c52aaa58159d672f5f 100644 (file)
@@ -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;