Fix some warnings

This commit is contained in:
kervala 2014-10-10 13:07:54 +02:00
parent d6586fa42a
commit 9995543f47
3 changed files with 3 additions and 3 deletions

View file

@ -328,7 +328,7 @@ yynewstate:
#endif
/* Get the current used size of the three stacks, in elements. */
int size = yyssp - yyss + 1;
int size = (int)(yyssp - yyss + 1);
#ifdef yyoverflow
/* Each stack pointer address is followed by the size of

View file

@ -1000,7 +1000,7 @@ int yyFlexLexer::yyinput()
else
{ /* need more input */
int offset = yy_c_buf_p - yytext_ptr;
int offset = (int)(yy_c_buf_p - yytext_ptr);
++yy_c_buf_p;
switch ( yy_get_next_buffer() )

View file

@ -2773,7 +2773,7 @@ static int input()
else
{ /* need more input */
int offset = yy_c_buf_p - yytext_ptr;
int offset = (int)(yy_c_buf_p - yytext_ptr);
++yy_c_buf_p;
switch ( yy_get_next_buffer() )