mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix harmless compiler warnings in Lemon.
FossilOrigin-Name: 6c94ba4b1c16b676978808dcb24f63c2f22915af5dcfe9f635c037011affcf4b
This commit is contained in:
@ -559,7 +559,7 @@ static YYACTIONTYPE yy_find_shift_action(
|
||||
#endif /* YYWILDCARD */
|
||||
return yy_default[stateno];
|
||||
}else{
|
||||
assert( i>=0 && i<sizeof(yy_action)/sizeof(yy_action[0]) );
|
||||
assert( i>=0 && i<(int)(sizeof(yy_action)/sizeof(yy_action[0])) );
|
||||
return yy_action[i];
|
||||
}
|
||||
}while(1);
|
||||
|
Reference in New Issue
Block a user