From 00c8c8f7ac46f18d3b1ca64ca7c073ba28616cdc Mon Sep 17 00:00:00 2001 From: Dave Beazley Date: Tue, 6 Jun 2000 22:34:36 +0000 Subject: [PATCH] *** empty log message *** git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@457 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Source/DOH/Doh/memory.c | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/Source/DOH/Doh/memory.c b/Source/DOH/Doh/memory.c index c696ece76..67e3225e1 100644 --- a/Source/DOH/Doh/memory.c +++ b/Source/DOH/Doh/memory.c @@ -23,16 +23,15 @@ static char cvsroot[] = "$Header$"; #endif static int PoolSize = DOH_POOL_SIZE; - DOH *DohNone = 0; /* The DOH None object */ static DohBase *FreeFragments[DOH_MAX_FRAG]; /* Array of free memory fragments */ typedef struct pool { - char *ptr; /* Start of pool */ - int len; /* Length of pool */ - int current; /* Current position for next allocation */ - struct pool *next; /* Next pool */ + char *ptr; /* Start of pool */ + int len; /* Length of pool */ + int current; /* Current position for next allocation */ + struct pool *next; /* Next pool */ } Pool; static Pool *Pools = 0;