1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Fix a harmless compiler warning in lemon.c.

FossilOrigin-Name: 62959c0ce3a2c486ebd82e6511efad0412b944a0
This commit is contained in:
drh
2013-10-11 23:01:02 +00:00
parent 691d4c9936
commit 2b51f2153b
3 changed files with 9 additions and 9 deletions

View File

@@ -3458,7 +3458,7 @@ void print_stack_union(
break;
}
hash++;
if( hash>=arraysize ) hash = 0;
if( hash>=(unsigned)arraysize ) hash = 0;
}
if( types[hash]==0 ){
sp->dtnum = hash + 1;