From: Thomas Heller Date: Tue, 30 Jul 2002 11:44:44 +0000 (+0000) Subject: Whitespace normalization. X-Git-Tag: v2.3c1~4825 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=37d5a15e026b368cdbe5df4dc592b50fac20a57b;p=python Whitespace normalization. --- diff --git a/Python/marshal.c b/Python/marshal.c index c00586dc93..5aaa3821b4 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -91,10 +91,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