Browse Source

Fix enum

git-svn-id: https://klish.googlecode.com/svn/trunk@292 0eaa4687-2ee9-07dd-09d9-bcdd2d2dd5fb
Serj Kalichev 13 years ago
parent
commit
398ff11b77
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lub/system/test.c

+ 2 - 2
lub/system/test.c

@@ -145,7 +145,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);
@@ -330,7 +330,7 @@ binop(void)
 	return 1; /* to make compiler happy */
 }
 
-static enum token
+static enum token_types
 t_lex_type(char *s)
 {
 	struct t_op const *op = ops;