From: Wilfried Goesgens Date: Sun, 28 Oct 2012 11:21:24 +0000 (+0100) Subject: ROOMLIST: start with n = 0 instead of random. X-Git-Tag: v8.20~201 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=9a02a1c668813fd47f1b9d4d837e91789aa9840a ROOMLIST: start with n = 0 instead of random. --- diff --git a/webcit/roomlist.c b/webcit/roomlist.c index 653f01aa1..129d60bc0 100644 --- a/webcit/roomlist.c +++ b/webcit/roomlist.c @@ -13,7 +13,7 @@ HashList *GetWhoKnowsHash(StrBuf *Target, WCTemplputParams *TP) long State; HashList *Whok = NULL; int Done = 0; - int n; + int n = 0; serv_puts("WHOK"); Line = NewStrBuf();