summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2002-07-30 11:44:44 (GMT)
committerThomas Heller <theller@ctypes.org>2002-07-30 11:44:44 (GMT)
commit37d5a15e026b368cdbe5df4dc592b50fac20a57b (patch)
treedfd9c1ef1d61db6e6d29c59326bf2d0bce6a3c6b /Python/marshal.c
parent3e1c18ad0c6057cd29a699595b73d4ad5d5c0a3a (diff)
downloadcpython-37d5a15e026b368cdbe5df4dc592b50fac20a57b.zip
cpython-37d5a15e026b368cdbe5df4dc592b50fac20a57b.tar.gz
cpython-37d5a15e026b368cdbe5df4dc592b50fac20a57b.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index c00586d..5aaa382 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