aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2022-08-31 18:11:56 +0200
committerlemon <lsof@mailbox.org>2022-08-31 18:11:56 +0200
commit25238202a22997564f69e8760b3754154d3d8228 (patch)
treef098f377971d1a1f379f18ee6e4efb1f32ccd4e2 /src
parentd983bd27b9175340e6b03d11759fba4366179ae1 (diff)
remove nesemu1
Diffstat (limited to 'src')
-rw-r--r--src/parse.cff2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.cff b/src/parse.cff
index 37ae897..d1027da 100644
--- a/src/parse.cff
+++ b/src/parse.cff
@@ -1900,7 +1900,7 @@ fn pexpostfix(P *Parser) Expr {
if !lexmatch(P, #null, ')') {
let _ = parseexpr(P);
lexmatch(P, #null, ',');
- warn(P, ex.loc, "variadic list `start' doesn't need an argument");
+ warn(P, ex.loc, "variadic list start doesn't need an argument");
lexexpect(P, ')');
}
ex = { tok.loc, ty_void, :VaStart(exprdup(P.alloc, ex)) };