Skip to content

Commit 7d48949

Browse files
author
jhylton
committed
Remove extraneous semicolon.
(Silences compiler warning for Compaq C++ 6.5 on Tru64.) git-svn-id: http://svn.python.org/projects/python/trunk@27676 6015fed2-1504-0410-9fe1-9d1591cc4771
1 parent d06e068 commit 7d48949

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/obmalloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ typedef struct pool_header *poolp;
260260
/*
261261
* This malloc lock
262262
*/
263-
SIMPLELOCK_DECL(_malloc_lock);
263+
SIMPLELOCK_DECL(_malloc_lock)
264264
#define LOCK() SIMPLELOCK_LOCK(_malloc_lock)
265265
#define UNLOCK() SIMPLELOCK_UNLOCK(_malloc_lock)
266266
#define LOCK_INIT() SIMPLELOCK_INIT(_malloc_lock)

0 commit comments

Comments
 (0)