From c21fc77e9f22694c60bbfec16b165bd075093530 Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 25 Jul 2025 17:54:16 -0400 Subject: oasm: lex: lex_is_mro() -> tok_is_mro() Improve naming consistency Signed-off-by: Ian Moffett --- usr.bin/oasm/emit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'usr.bin/oasm/emit.c') diff --git a/usr.bin/oasm/emit.c b/usr.bin/oasm/emit.c index 139cf47..6b17eab 100644 --- a/usr.bin/oasm/emit.c +++ b/usr.bin/oasm/emit.c @@ -471,7 +471,7 @@ emit_process(struct oasm_state *oasm, struct emit_state *emit) curtok = emit_encode_hlt(emit, curtok); break; default: - if (lex_is_mro(curtok->type)) { + if (tok_is_mro(curtok->type)) { curtok = emit_encode_mro(emit, curtok); break; } -- cgit v1.2.3