summaryrefslogtreecommitdiff
path: root/sys/src/cmd/mothra/rdhtml.c
diff options
context:
space:
mode:
authorcinap_lenrek <cinap_lenrek@felloff.net>2014-02-16 19:40:50 +0100
committercinap_lenrek <cinap_lenrek@felloff.net>2014-02-16 19:40:50 +0100
commitae41f49f09de058a500a02f4a0fa2b463b8b44de (patch)
tree960a585cc7bf090a5d1a83394713885a4dd22712 /sys/src/cmd/mothra/rdhtml.c
parent3df2b18398544184e78446a9e9e25d5be343cf1c (diff)
mothra: remove unused local variables from pl_nextc()
Diffstat (limited to 'sys/src/cmd/mothra/rdhtml.c')
-rw-r--r--sys/src/cmd/mothra/rdhtml.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/cmd/mothra/rdhtml.c b/sys/src/cmd/mothra/rdhtml.c
index 5fbf0c732..88bb4f853 100644
--- a/sys/src/cmd/mothra/rdhtml.c
+++ b/sys/src/cmd/mothra/rdhtml.c
@@ -219,8 +219,7 @@ void pl_putback(Hglob *g, int c){
}
int pl_nextc(Hglob *g){
int c;
- int n;
- Rune r;
+
if(g->heof) return EOF;
if(g->npeekc!=0) return g->peekc[--g->npeekc];
c=pl_readc(g);