[Python-checkins] python/dist/src/Python marshal.c,1.69.8.1,1.69.8.2

mwh@users.sourceforge.net mwh@users.sourceforge.net
Tue, 24 Sep 2002 04:56:47 -0700


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

Modified Files:
      Tag: release22-maint
	marshal.c 
Log Message:
backport theller's checkin of
    revision 1.74 of marshal.c

Whitespace normalization.


Index: marshal.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/marshal.c,v
retrieving revision 1.69.8.1
retrieving revision 1.69.8.2
diff -C2 -d -r1.69.8.1 -r1.69.8.2
*** marshal.c	24 Sep 2002 11:55:54 -0000	1.69.8.1
--- marshal.c	24 Sep 2002 11:56:45 -0000	1.69.8.2
***************
*** 90,97 ****
  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);
  }
  
--- 90,97 ----
  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);
  }