]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
reapply f1dc30a1be72
authorBenjamin Peterson <benjamin@python.org>
Tue, 25 Jun 2013 18:25:26 +0000 (11:25 -0700)
committerBenjamin Peterson <benjamin@python.org>
Tue, 25 Jun 2013 18:25:26 +0000 (11:25 -0700)
Modules/_collectionsmodule.c

index 371631ce2661d98cae8ad8421dd770d650999551..abd80e06c4311f3e6a10ea352097ba453445eaa4 100644 (file)
@@ -47,8 +47,8 @@
 
 typedef struct BLOCK {
     struct BLOCK *leftlink;
-    struct BLOCK *rightlink;
     PyObject *data[BLOCKLEN];
+    struct BLOCK *rightlink;
 } block;
 
 #define MAXFREEBLOCKS 10