]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
backport theller's checkin of
authorMichael W. Hudson <mwh@python.net>
Tue, 24 Sep 2002 11:56:45 +0000 (11:56 +0000)
committerMichael W. Hudson <mwh@python.net>
Tue, 24 Sep 2002 11:56:45 +0000 (11:56 +0000)
    revision 1.74 of marshal.c

Whitespace normalization.

Python/marshal.c

index 6ba20c9698a6cab39fa1e9ac2e19f97eaa301fbc..4c7ad21c0b62ae7dfbeca98737d20b30a6e27f45 100644 (file)
@@ -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