| commit | d1fedb6ab59547f914a1958804a0658b68e4d6b2 | [log] [tgz] |
|---|---|---|
| author | Jeremy Hylton <jeremy@alum.mit.edu> | Thu Jul 18 18:49:52 2002 +0000 |
| committer | Jeremy Hylton <jeremy@alum.mit.edu> | Thu Jul 18 18:49:52 2002 +0000 |
| tree | 49e8da50517821143acf3bb80dc1fafb7a6639d6 | |
| parent | 9d0c8cee660030391e7017674f176fa2b496adde [diff] |
Remove extraneous semicolon. (Silences compiler warning for Compaq C++ 6.5 on Tru64.)
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index 22481ad..95c0e87 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c
@@ -260,7 +260,7 @@ /* * 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)