From: Jeremy Hylton Date: Thu, 18 Jul 2002 18:49:52 +0000 (+0000) Subject: Remove extraneous semicolon. X-Git-Tag: v2.3c1~4955 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d1fedb6ab59547f914a1958804a0658b68e4d6b2;p=python Remove extraneous semicolon. (Silences compiler warning for Compaq C++ 6.5 on Tru64.) --- diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index 22481ad1a2..95c0e87f9c 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)