mirror of
https://github.com/python/cpython.git
synced 2024-11-23 18:04:37 +08:00
Whitespace normalization.
This commit is contained in:
parent
3e1c18ad0c
commit
37d5a15e02
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user