From 54b139deca19ba20a4c6216165de7e7d11104771 Mon Sep 17 00:00:00 2001 From: jsg Date: Tue, 11 Oct 2022 13:40:38 +0000 Subject: [PATCH] correct t_lex_type() return type ok miod@ --- bin/test/test.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/test/test.c b/bin/test/test.c index 64f58acc2fb..bb49356ec46 100644 --- a/bin/test/test.c +++ b/bin/test/test.c @@ -1,4 +1,4 @@ -/* $OpenBSD: test.c,v 1.19 2018/04/02 06:47:43 tobias Exp $ */ +/* $OpenBSD: test.c,v 1.20 2022/10/11 13:40:38 jsg Exp $ */ /* $NetBSD: test.c,v 1.15 1995/03/21 07:04:06 cgd Exp $ */ /* @@ -140,7 +140,7 @@ char **t_wp; struct t_op const *t_wp_op; static enum token t_lex(char *); -static enum token t_lex_type(char *); +static enum token_types t_lex_type(char *); static int oexpr(enum token n); static int aexpr(enum token n); static int nexpr(enum token n); @@ -402,7 +402,7 @@ binop(void) syntax(op->op_text, "not a binary operator"); } -static enum token +static enum token_types t_lex_type(char *s) { struct t_op const *op = ops; -- 2.20.1