From cbfdaea7fb9aef02e43292fa0a317419e1d5df62 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Sun, 20 Jul 2025 01:52:55 -0400 Subject: usr: oasm: Add quotes around token name Signed-off-by: Ian Moffett --- usr.bin/oasm/lex.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/oasm') diff --git a/usr.bin/oasm/lex.c b/usr.bin/oasm/lex.c index a61c62a..bd0b8f7 100644 --- a/usr.bin/oasm/lex.c +++ b/usr.bin/oasm/lex.c @@ -264,7 +264,7 @@ lex_tok(struct oasm_state *state, struct oasm_token *ttp) ttp->raw = p; return 0; } - oasm_err("bad token %s\n", p); + oasm_err("bad token \"%s\"\n", p); return -1; } -- cgit v1.2.3