scanner: fix compiler warning

src/xkbcomp/scanner.c:158:17: warning: comparison of constant -1 with expression of type 'enum yytokentype' is always true
      [-Wtautological-constant-out-of-range-compare]
        if (tok != -1) return tok;
            ~~~ ^  ~~

Signed-off-by: Ran Benita <ran234@gmail.com>
master
Ran Benita 2013-08-02 14:41:19 +03:00
parent 9bb1d0bc1d
commit aa9c91943e
1 changed files with 1 additions and 1 deletions

View File

@ -155,7 +155,7 @@ skip_more_whitespace_and_comments:
/* Keyword. */
tok = keyword_to_token(s->buf);
if (tok != -1) return tok;
if ((int) tok != -1) return tok;
yylval->str = strdup(s->buf);
if (!yylval->str)