We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e1c18a commit 37d5a15Copy full SHA for 37d5a15
1 file changed
Python/marshal.c
@@ -91,10 +91,10 @@ w_short(int x, WFILE *p)
91
static void
92
w_long(long x, WFILE *p)
93
{
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);
+ 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);
98
}
99
100
#if SIZEOF_LONG > 4
0 commit comments