[Python-checkins] python/dist/src/Objects obmalloc.c,2.46,2.47

jhylton@users.sourceforge.net jhylton@users.sourceforge.net
Thu, 18 Jul 2002 11:49:55 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv18490

Modified Files:
	obmalloc.c 
Log Message:
Remove extraneous semicolon.

(Silences compiler warning for Compaq C++ 6.5 on Tru64.)


Index: obmalloc.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/obmalloc.c,v
retrieving revision 2.46
retrieving revision 2.47
diff -C2 -d -r2.46 -r2.47
*** obmalloc.c	10 Jul 2002 19:29:49 -0000	2.46
--- obmalloc.c	18 Jul 2002 18:49:52 -0000	2.47
***************
*** 261,265 ****
   * This malloc lock
   */
! SIMPLELOCK_DECL(_malloc_lock);
  #define LOCK()		SIMPLELOCK_LOCK(_malloc_lock)
  #define UNLOCK()	SIMPLELOCK_UNLOCK(_malloc_lock)
--- 261,265 ----
   * This malloc lock
   */
! SIMPLELOCK_DECL(_malloc_lock)
  #define LOCK()		SIMPLELOCK_LOCK(_malloc_lock)
  #define UNLOCK()	SIMPLELOCK_UNLOCK(_malloc_lock)