From: Guido van Rossum Date: Wed, 7 Apr 1999 16:05:47 +0000 (+0000) Subject: Remove unused variable from complex_from_string() code. X-Git-Tag: v1.5.2c1~23 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99fb7c70f4e9e399c4cfbfb18f1f04a57fc80b50;p=thirdparty%2FPython%2Fcpython.git Remove unused variable from complex_from_string() code. --- diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index ec87492f34e2..0340e3a2b558 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -399,7 +399,7 @@ complex_from_string(v) PyObject *v; { extern double strtod Py_PROTO((const char *, char **)); - char a, *s, *start, *end; + char *s, *start, *end; double x=0.0, y=0.0, z; int got_re=0, got_im=0, done=0; int digit_or_dot;