[Python-checkins] CVS: python/dist/src/Objects typeobject.c,2.17,2.18

Jack Jansen jackjansen@users.sourceforge.net
Sun, 10 Jun 2001 14:43:30 -0700


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

Modified Files:
	typeobject.c 
Log Message:
Added a missing cast to the hashfunc initializer.

Index: typeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/typeobject.c,v
retrieving revision 2.17
retrieving revision 2.18
diff -C2 -r2.17 -r2.18
*** typeobject.c	2001/06/09 07:34:05	2.17
--- typeobject.c	2001/06/10 21:43:28	2.18
***************
*** 57,61 ****
  	0,			/*tp_as_sequence*/
  	0,			/*tp_as_mapping*/
! 	_Py_HashPointer,	/*tp_hash*/
  	0,			/*tp_call*/
  	0,			/*tp_str*/
--- 57,61 ----
  	0,			/*tp_as_sequence*/
  	0,			/*tp_as_mapping*/
! 	(hashfunc)_Py_HashPointer,	/*tp_hash*/
  	0,			/*tp_call*/
  	0,			/*tp_str*/