summaryrefslogtreecommitdiff
path: root/Parser/tokenizer.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-02 18:27:33 +0000
committerGuido van Rossum <guido@python.org>1996-12-02 18:27:33 +0000
commit0f6c59e27e14e7604a085191aee097caa79ea7ec (patch)
tree4693f8452baf8a4fc8128c16d2b1f2265cd8419d /Parser/tokenizer.c
parent5eeea0dc3ee72c453308065b8239a00cb4ab36ba (diff)
downloadcpython-0f6c59e27e14e7604a085191aee097caa79ea7ec.tar.gz
Make gcc -Wall happy
Diffstat (limited to 'Parser/tokenizer.c')
-rw-r--r--Parser/tokenizer.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c
index cff9179fc9..8a726e0ea3 100644
--- a/Parser/tokenizer.c
+++ b/Parser/tokenizer.c
@@ -279,7 +279,6 @@ tok_nextc(tok)
int curstart = tok->start == NULL ? -1 :
tok->start - tok->buf;
int curvalid = tok->inp - tok->buf;
- int cursize = tok->end - tok->buf;
int newsize = curvalid + BUFSIZ;
char *newbuf = tok->buf;
RESIZE(newbuf, char, newsize);