From 44ed841fec76f1206b55a19842588acf8cd8d7c3 Mon Sep 17 00:00:00 2001 From: "Michael W. Hudson" Date: Tue, 24 Sep 2002 11:56:45 +0000 Subject: [PATCH] backport theller's checkin of revision 1.74 of marshal.c Whitespace normalization. --- Python/marshal.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 -- 2.47.3