diff options
author | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-07-18 18:49:52 (GMT) |
---|---|---|
committer | Jeremy Hylton <jeremy@alum.mit.edu> | 2002-07-18 18:49:52 (GMT) |
commit | d1fedb6ab59547f914a1958804a0658b68e4d6b2 (patch) | |
tree | 49e8da50517821143acf3bb80dc1fafb7a6639d6 /Objects/obmalloc.c | |
parent | 9d0c8cee660030391e7017674f176fa2b496adde (diff) | |
download | cpython-d1fedb6ab59547f914a1958804a0658b68e4d6b2.zip cpython-d1fedb6ab59547f914a1958804a0658b68e4d6b2.tar.gz cpython-d1fedb6ab59547f914a1958804a0658b68e4d6b2.tar.bz2 |
Remove extraneous semicolon.
(Silences compiler warning for Compaq C++ 6.5 on Tru64.)
Diffstat (limited to 'Objects/obmalloc.c')
-rw-r--r-- | Objects/obmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ 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) |