Skip to content

Commit 37d5a15

Browse files
author
Thomas Heller
committed
Whitespace normalization.
1 parent 3e1c18a commit 37d5a15

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

Python/marshal.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ w_short(int x, WFILE *p)
9191
static void
9292
w_long(long x, WFILE *p)
9393
{
94-
w_byte((char)( x & 0xff), p);
95-
w_byte((char)((x>> 8) & 0xff), p);
96-
w_byte((char)((x>>16) & 0xff), p);
97-
w_byte((char)((x>>24) & 0xff), p);
94+
w_byte((char)( x & 0xff), p);
95+
w_byte((char)((x>> 8) & 0xff), p);
96+
w_byte((char)((x>>16) & 0xff), p);
97+
w_byte((char)((x>>24) & 0xff), p);
9898
}
9999

100100
#if SIZEOF_LONG > 4

0 commit comments

Comments
 (0)