]> granicus.if.org Git - python/commitdiff
Whitespace normalization.
authorThomas Heller <theller@ctypes.org>
Tue, 30 Jul 2002 11:44:44 +0000 (11:44 +0000)
committerThomas Heller <theller@ctypes.org>
Tue, 30 Jul 2002 11:44:44 +0000 (11:44 +0000)
Python/marshal.c

index c00586dc9325130c39ae39b68cb06817e4b01593..5aaa3821b42cf7a01f737bdc47d47ee87f2c6393 100644 (file)
@@ -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