mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fix some warnings
This commit is contained in:
parent
c175dec5d8
commit
b3dcb0f72f
3 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
|
@ -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() )
|
||||
|
|
|
@ -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() )
|
||||
|
|
Loading…
Reference in a new issue