summaryrefslogtreecommitdiffstats
path: root/Parser/tokenizer.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1996-12-02 18:27:33 (GMT)
committerGuido van Rossum <guido@python.org>1996-12-02 18:27:33 (GMT)
commitfd8a393086fbf43597965d5e55bec158a094a466 (patch)
tree2e819fb69d233f219b1b93d5a4c451c1f2deec63 /Parser/tokenizer.c
parentbda7ca77724b75fa196e4367ae7580d510d6ee72 (diff)
downloadcpython-fd8a393086fbf43597965d5e55bec158a094a466.zip
cpython-fd8a393086fbf43597965d5e55bec158a094a466.tar.gz
cpython-fd8a393086fbf43597965d5e55bec158a094a466.tar.bz2
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 cff9179..8a726e0 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);