[Python-checkins] CVS: python/dist/src/Mac/Modules/waste wastemodule.c,1.16,1.17

Jack Jansen jackjansen@users.sourceforge.net
Wed, 20 Jun 2001 14:21:04 -0700


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

Modified Files:
	wastemodule.c 
Log Message:
Added a const to shut up a compiler warning.

Index: wastemodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/waste/wastemodule.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -r1.16 -r1.17
*** wastemodule.c	2001/05/22 21:56:20	1.16
--- wastemodule.c	2001/06/20 21:21:02	1.17
***************
*** 155,159 ****
  
  static pascal OSErr
! my_draw_handler(Rect *destRect, WEObjectReference objref)
  {
  	PyObject *args=NULL, *rv=NULL;
--- 155,159 ----
  
  static pascal OSErr
! my_draw_handler(const Rect *destRect, WEObjectReference objref)
  {
  	PyObject *args=NULL, *rv=NULL;