From: havoc Date: Sun, 12 Jul 2009 22:25:50 +0000 (+0000) Subject: fix a compile error when MEMPARANOIA is off X-Git-Tag: xonotic-v0.1.0preview~1572 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e36b2f6c58b8a8c736c10e0133108acd9bc3a630;p=xonotic%2Fdarkplaces.git fix a compile error when MEMPARANOIA is off git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9056 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/zone.c b/zone.c index 7eefcd75..37e06f5d 100644 --- a/zone.c +++ b/zone.c @@ -674,7 +674,9 @@ Memory_Init */ void Memory_Init (void) { +#if MEMPARANOIA sentinel_seed = rand(); +#endif poolchain = NULL; tempmempool = Mem_AllocPool("Temporary Memory", POOLFLAG_TEMP, NULL); zonemempool = Mem_AllocPool("Zone", 0, NULL);