[Python-checkins] CVS: python/dist/src/Mac/Modules/cf _CFmodule.c,1.2,1.3

Jack Jansen jackjansen@users.sourceforge.net
Tue, 04 Sep 2001 15:25:45 -0700


Update of /cvsroot/python/python/dist/src/Mac/Modules/cf
In directory usw-pr-cvs1:/tmp/cvs-serv16005/Python/Mac/Modules/cf

Modified Files:
	_CFmodule.c 
Log Message:
Shut up a few more gcc warnings.

Index: _CFmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/cf/_CFmodule.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** _CFmodule.c	2001/09/04 22:19:05	1.2
--- _CFmodule.c	2001/09/04 22:25:43	1.3
***************
*** 273,277 ****
  {
  	char buf[100];
! 	sprintf(buf, "<CFTypeRef type-%d object at 0x%08.8x for 0x%08.8x>", CFGetTypeID(self->ob_itself), self, self->ob_itself);
  	return PyString_FromString(buf);
  }
--- 273,277 ----
  {
  	char buf[100];
! 	sprintf(buf, "<CFTypeRef type-%d object at 0x%8.8x for 0x%8.8x>", CFGetTypeID(self->ob_itself), (unsigned long)self, (unsigned long)self->ob_itself);
  	return PyString_FromString(buf);
  }