From: Michael W. Hudson Date: Tue, 24 Sep 2002 11:56:45 +0000 (+0000) Subject: backport theller's checkin of X-Git-Tag: v2.2.2b1~132 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=44ed841fec76f1206b55a19842588acf8cd8d7c3;p=thirdparty%2FPython%2Fcpython.git backport theller's checkin of revision 1.74 of marshal.c Whitespace normalization. --- diff --git a/Python/marshal.c b/Python/marshal.c index 6ba20c9698a6..4c7ad21c0b62 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -89,10 +89,10 @@ w_short(int x, WFILE *p) static void 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); + 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); } #if SIZEOF_LONG > 4