From: Barry Warsaw Date: Fri, 3 Jan 1997 00:26:28 +0000 (+0000) Subject: Scratch the ears of gcc -Wall. X-Git-Tag: v1.5a1~611 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b9a781e177ace3ef32fa40a98f0792432ec9fdd3;p=python Scratch the ears of gcc -Wall. --- diff --git a/Modules/structmodule.c b/Modules/structmodule.c index 06e7b2eda8..113e3c507b 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))