]> granicus.if.org Git - python/commitdiff
Remove extraneous semicolon.
authorJeremy Hylton <jeremy@alum.mit.edu>
Thu, 18 Jul 2002 18:49:52 +0000 (18:49 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Thu, 18 Jul 2002 18:49:52 +0000 (18:49 +0000)
(Silences compiler warning for Compaq C++ 6.5 on Tru64.)

Objects/obmalloc.c

index 22481ad1a2c79050bd10557d38ccaf338a4145a1..95c0e87f9c35dce5a2acbfbee7e058ecfe718d4e 100644 (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)