eolian: fix wrong type keyword check

This commit is contained in:
Daniel Kolesa 2015-06-10 16:38:41 +01:00
parent e8dd532854
commit 7ea7f0b68a
1 changed files with 1 additions and 1 deletions

View File

@ -1053,7 +1053,7 @@ eo_lexer_keyword_str_get(int kw)
Eina_Bool
eo_lexer_is_type_keyword(int kw)
{
return (kw >= KW_byte && kw <= KW_true);
return (kw >= KW_byte && kw < KW_true);
}
int