]> git.draconx.ca Git - cdecl99.git/blobdiff - src/scan.l
libcdecl: Remove error code argument from cdecl__err.
[cdecl99.git] / src / scan.l
index 73efdde88126075253484ca3d3c760a6959c7019..e720fcf29746c7bc9e75afae37aea5129282c9ce 100644 (file)
@@ -231,6 +231,6 @@ int_parse:
        c = yytext;
 invalid_char:
        to_readable_ch(buf, *c);
-       cdecl__err(CDECL_ENOPARSE, _("syntax error, unexpected %s"), buf);
+       cdecl__err(_("syntax error, unexpected %s"), buf);
        return T_LEX_ERROR;
 }