diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-25 17:49:23 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-25 17:49:23 -0400 |
commit | b5860623b42bdbe17633c95a5eec2e31cd7d384f (patch) | |
tree | bbd48b69d447bf1e75402009ee39ca3f4820636d | |
parent | 967c7daef5c4259ff0a79e91a758db335872c25e (diff) |
oasm: parse: "instruction" -> "token"
Signed-off-by: Ian Moffett <ian@osmora.org>
-rw-r--r-- | usr.bin/oasm/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/oasm/parse.c b/usr.bin/oasm/parse.c index ba97306..69c21f9 100644 --- a/usr.bin/oasm/parse.c +++ b/usr.bin/oasm/parse.c @@ -133,7 +133,7 @@ parse_reg(struct oasm_state *state, struct oasm_token *tok) } p = tokstr[state->last]; - oasm_err("bad instruction '%s' for regop\n", p); + oasm_err("bad token '%s' for regop\n", p); return -1; } |