summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2013-06-25 18:25:26 (GMT)
committerBenjamin Peterson <benjamin@python.org>2013-06-25 18:25:26 (GMT)
commit13dd1f947e350f48a031897075f697d1f65b0bbd (patch)
treec82708db54f5ef79f4e2b2024adbfaa3e5eb1378 /Modules
parentc1a44269da5ac707ed65346e42c233012d8d0759 (diff)
downloadcpython-13dd1f947e350f48a031897075f697d1f65b0bbd.zip
cpython-13dd1f947e350f48a031897075f697d1f65b0bbd.tar.gz
cpython-13dd1f947e350f48a031897075f697d1f65b0bbd.tar.bz2
reapply f1dc30a1be72
Diffstat (limited to 'Modules')
-rw-r--r--Modules/_collectionsmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_collectionsmodule.c b/Modules/_collectionsmodule.c
index 371631c..abd80e0 100644
--- a/Modules/_collectionsmodule.c
+++ b/Modules/_collectionsmodule.c
@@ -47,8 +47,8 @@
typedef struct BLOCK {
struct BLOCK *leftlink;
- struct BLOCK *rightlink;
PyObject *data[BLOCKLEN];
+ struct BLOCK *rightlink;
} block;
#define MAXFREEBLOCKS 10