diff options
-rw-r--r-- | usr.bin/oasm/lex.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |