Commit cd6f804c authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Remove a duplicate assert

Fixes	#1064
parent f4ba8eea
......@@ -444,13 +444,13 @@ vcc_resolve_includes(struct vcc *tl)
}
t2 = VTAILQ_NEXT(t1, list);
assert(t2 != NULL); /* There's always an EOI */
if (t2->tok != ';') {
VSB_printf(tl->sb,
"include <string> not followed by semicolon.\n");
vcc_ErrWhere(tl, t1);
return;
}
assert(t2 != NULL);
sp = vcc_file_source(tl, tl->sb, t1->dec);
if (sp == NULL) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment