aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Voss <mail@thomasvoss.com> 2024-02-25 13:01:11 +0100
committerThomas Voss <mail@thomasvoss.com> 2024-02-25 13:01:11 +0100
commitafa524db9951332a615ebbd8bc2911f9734088f5 (patch)
treee622c54ac7b5ca38da6e9c4cf403013d7e0d4ad3
parentf71986d23434c1eb9c11a65238309fbfa9fe4b73 (diff)
Remove semicolon
-rw-r--r--src/c8asm/lexer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c8asm/lexer.c b/src/c8asm/lexer.c
index 87835a9..12c96a4 100644
--- a/src/c8asm/lexer.c
+++ b/src/c8asm/lexer.c
@@ -179,7 +179,7 @@ found:
dapush(toks, tok);
}
-end:;
+end:
tok = (struct token){
.kind = T_EOL,
.sv.p = sv->p,