From 9a02a1c668813fd47f1b9d4d837e91789aa9840a Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Sun, 28 Oct 2012 12:21:24 +0100 Subject: [PATCH] ROOMLIST: start with n = 0 instead of random. --- webcit/roomlist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.30.2