Remove extraneous semicolon.

(Silences compiler warning for Compaq C++ 6.5 on Tru64.)
This commit is contained in:
Jeremy Hylton 2002-07-18 18:49:52 +00:00
parent 9d0c8cee66
commit d1fedb6ab5
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ typedef struct pool_header *poolp;
/*
* This malloc lock
*/
SIMPLELOCK_DECL(_malloc_lock);
SIMPLELOCK_DECL(_malloc_lock)
#define LOCK() SIMPLELOCK_LOCK(_malloc_lock)
#define UNLOCK() SIMPLELOCK_UNLOCK(_malloc_lock)
#define LOCK_INIT() SIMPLELOCK_INIT(_malloc_lock)