mirror of
https://github.com/python/cpython.git
synced 2025-09-22 00:12:56 +00:00
Whitespace normalization.
This commit is contained in:
parent
3e1c18ad0c
commit
37d5a15e02
1 changed files with 4 additions and 4 deletions
|
@ -91,10 +91,10 @@ w_short(int x, WFILE *p)
|
||||||
static void
|
static void
|
||||||
w_long(long x, WFILE *p)
|
w_long(long x, WFILE *p)
|
||||||
{
|
{
|
||||||
w_byte((char)( x & 0xff), p);
|
w_byte((char)( x & 0xff), p);
|
||||||
w_byte((char)((x>> 8) & 0xff), p);
|
w_byte((char)((x>> 8) & 0xff), p);
|
||||||
w_byte((char)((x>>16) & 0xff), p);
|
w_byte((char)((x>>16) & 0xff), p);
|
||||||
w_byte((char)((x>>24) & 0xff), p);
|
w_byte((char)((x>>24) & 0xff), p);
|
||||||
}
|
}
|
||||||
|
|
||||||
#if SIZEOF_LONG > 4
|
#if SIZEOF_LONG > 4
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue