diff options
author | Barry Warsaw <barry@python.org> | 2000-08-18 19:59:20 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 2000-08-18 19:59:20 (GMT) |
commit | 73f77b4495cbef9ac341296464a68a5b6943d9f7 (patch) | |
tree | e6aa0f9d2f5fa0f8bf7681fc5a3c0e093ad79046 /Python/compile.c | |
parent | 04e654a63c012cc321572e6dabbe70550c4f319f (diff) | |
download | cpython-73f77b4495cbef9ac341296464a68a5b6943d9f7.zip cpython-73f77b4495cbef9ac341296464a68a5b6943d9f7.tar.gz cpython-73f77b4495cbef9ac341296464a68a5b6943d9f7.tar.bz2 |
com_error(): Quiet gcc -Wall warning.
Diffstat (limited to 'Python/compile.c')
-rw-r--r-- | Python/compile.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c index e18f627..47445d0 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) { |