[Python-checkins] CVS: python/dist/src/Python frozen.c,1.10,1.11

Tim Peters tim_one@users.sourceforge.net
Thu, 18 Oct 2001 11:57:33 -0700


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

Modified Files:
	frozen.c 
Log Message:
Squash compiler wng about signed/unsigned mismatch.


Index: frozen.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/frozen.c,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** frozen.c	2001/10/18 18:49:37	1.10
--- frozen.c	2001/10/18 18:57:31	1.11
***************
*** 22,26 ****
  };
  
! #define SIZE sizeof(M___hello__)
  
  static struct _frozen _PyImport_FrozenModules[] = {
--- 22,26 ----
  };
  
! #define SIZE (int)sizeof(M___hello__)
  
  static struct _frozen _PyImport_FrozenModules[] = {