Commit 574e7570 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Fix an off-by-one in an error message

parent adf520df
...@@ -644,7 +644,7 @@ vcc_DefBackend(struct vcc *tl, const struct token *nm) ...@@ -644,7 +644,7 @@ vcc_DefBackend(struct vcc *tl, const struct token *nm)
sym = VCC_GetSymbolTok(tl, nm, SYM_BACKEND); sym = VCC_GetSymbolTok(tl, nm, SYM_BACKEND);
AN(sym); AN(sym);
if (sym->ndef > 0) { if (sym->ndef > 0) {
VSB_printf(tl->sb, "Backend %.*s redefined\n", PF(tl->t)); VSB_printf(tl->sb, "Backend %.*s redefined\n", PF(nm));
vcc_ErrWhere(tl, nm); vcc_ErrWhere(tl, nm);
return; return;
} }
......
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