summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBarry Warsaw <barry@python.org>1997-01-03 00:26:28 (GMT)
committerBarry Warsaw <barry@python.org>1997-01-03 00:26:28 (GMT)
commitb9a781e177ace3ef32fa40a98f0792432ec9fdd3 (patch)
tree109a88b1a86af4727fffbbfab5bf5afc717fdfb1 /Modules
parentf3f41a9e57126a5cc9d58dee15e6a65e74c8502f (diff)
downloadcpython-b9a781e177ace3ef32fa40a98f0792432ec9fdd3.zip
cpython-b9a781e177ace3ef32fa40a98f0792432ec9fdd3.tar.gz
cpython-b9a781e177ace3ef32fa40a98f0792432ec9fdd3.tar.bz2
Scratch the ears of gcc -Wall.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/structmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/structmodule.c b/Modules/structmodule.c
index 06e7b2e..113e3c5 100644
--- a/Modules/structmodule.c
+++ b/Modules/structmodule.c
@@ -1254,7 +1254,7 @@ struct_unpack(self, args)
const formatdef *f, *e;
char *str, *start, *fmt, *s;
char c;
- int len, size, num, x;
+ int len, size, num;
PyObject *res, *v;
if (!PyArg_ParseTuple(args, "ss#", &fmt, &start, &len))