commit | 9ed5f2726607c57c894af24159b6a7ccf660da7f | [log] [tgz] |
---|---|---|
author | Antoine Pitrou <solipsis@pitrou.net> | Tue Aug 13 20:18:52 2013 +0200 |
committer | Antoine Pitrou <solipsis@pitrou.net> | Tue Aug 13 20:18:52 2013 +0200 |
tree | e1b779ecf1afd5d86eb955ed44b476f2d88dab10 | |
parent | 9eaa3e6732debf6a633f44cf3c82a0eaf8879a51 [diff] [blame] |
Issue #18722: Remove uses of the "register" keyword in C code.
diff --git a/Python/marshal.c b/Python/marshal.c index 1997e19..ec2d51f 100644 --- a/Python/marshal.c +++ b/Python/marshal.c
@@ -613,7 +613,7 @@ static int r_short(RFILE *p) { - register short x; + short x; unsigned char buffer[2]; r_string((char *) buffer, 2, p); @@ -627,7 +627,7 @@ static long r_long(RFILE *p) { - register long x; + long x; unsigned char buffer[4]; r_string((char *) buffer, 4, p);