From: Barry Warsaw Date: Fri, 18 Aug 2000 19:59:20 +0000 (+0000) Subject: com_error(): Quiet gcc -Wall warning. X-Git-Tag: v2.0b1~362 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=73f77b4495cbef9ac341296464a68a5b6943d9f7;p=thirdparty%2FPython%2Fcpython.git com_error(): Quiet gcc -Wall warning. --- diff --git a/Python/compile.c b/Python/compile.c index e18f627dd83f..47445d067911 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -303,7 +303,6 @@ struct compiling { static void com_error(struct compiling *c, PyObject *exc, char *msg) { - size_t n = strlen(msg); PyObject *v, *tb, *tmp; c->c_errors++; if (c->c_lineno <= 1) {