aboutsummaryrefslogtreecommitdiff
path: root/src/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/parser.cpp')
-rw-r--r--src/parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.cpp b/src/parser.cpp
index ba2b704f7..89290c9a2 100644
--- a/src/parser.cpp
+++ b/src/parser.cpp
@@ -1982,7 +1982,7 @@ Ast *parse_operand(AstFile *f, bool lhs) {
while (allow_token(f, Token_Hash)) {
Token tag = expect_token_after(f, Token_Ident, "#");
- if (tag.string == "align") {
+ if (tag.string == "align") {
if (align) {
syntax_error(tag, "Duplicate union tag '#%.*s'", LIT(tag.string));
}