[Python-checkins] python/dist/src/Python marshal.c,1.73,1.74

theller@users.sourceforge.net theller@users.sourceforge.net
Tue, 30 Jul 2002 04:44:46 -0700


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

Modified Files:
	marshal.c 
Log Message:
Whitespace normalization.


Index: marshal.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/marshal.c,v
retrieving revision 1.73
retrieving revision 1.74
diff -C2 -d -r1.73 -r1.74
*** marshal.c	30 Jul 2002 11:40:57 -0000	1.73
--- marshal.c	30 Jul 2002 11:44:44 -0000	1.74
***************
*** 92,99 ****
  w_long(long x, WFILE *p)
  {
!  	w_byte((char)( x      & 0xff), p);
!  	w_byte((char)((x>> 8) & 0xff), p);
!  	w_byte((char)((x>>16) & 0xff), p);
!  	w_byte((char)((x>>24) & 0xff), p);
  }
  
--- 92,99 ----
  w_long(long x, WFILE *p)
  {
! 	w_byte((char)( x      & 0xff), p);
! 	w_byte((char)((x>> 8) & 0xff), p);
! 	w_byte((char)((x>>16) & 0xff), p);
! 	w_byte((char)((x>>24) & 0xff), p);
  }