aboutsummaryrefslogtreecommitdiff
path: root/tccpp.c
diff options
context:
space:
mode:
Diffstat (limited to 'tccpp.c')
-rw-r--r--tccpp.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tccpp.c b/tccpp.c
index feb533a..6aa067f 100644
--- a/tccpp.c
+++ b/tccpp.c
@@ -3011,7 +3011,6 @@ ST_FUNC void preprocess_new()
{
int i, c;
const char *p, *r;
- TokenSym *ts;
/* init isid table */
for(i=CH_EOF;i<256;i++)
@@ -3030,7 +3029,7 @@ ST_FUNC void preprocess_new()
if (c == '\0')
break;
}
- ts = tok_alloc(p, r - p - 1);
+ tok_alloc(p, r - p - 1);
p = r;
}
}