summaryrefslogtreecommitdiffstats
path: root/Python/marshal.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-03-20 05:39:41 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-03-20 05:39:41 (GMT)
commit605a774a98fa774b275e2813f4fee8c1d358d324 (patch)
tree3f15fa3fcc6a06f96cb207bdb09154a9eec3ffa3 /Python/marshal.c
parentc6dc12484bbe862364f914e7f1f425eece7cc66b (diff)
downloadcpython-605a774a98fa774b275e2813f4fee8c1d358d324.zip
cpython-605a774a98fa774b275e2813f4fee8c1d358d324.tar.gz
cpython-605a774a98fa774b275e2813f4fee8c1d358d324.tar.bz2
Backed out changeset 521232b05b97
Diffstat (limited to 'Python/marshal.c')
-rw-r--r--Python/marshal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/marshal.c b/Python/marshal.c
index d237d17..c3e75b1 100644
--- a/Python/marshal.c
+++ b/Python/marshal.c
@@ -803,7 +803,7 @@ r_object(RFILE *p)
/* NULL is a valid return value, it does not necessarily means that
an exception is set. */
PyObject *v, *v2;
- Py_ssize_t idx = 0;
+ Py_ssize_t idx;
long i, n;
int type = r_byte(p);
int flag;