mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-29 08:01:23 +03:00
Fix a harmless compiler warning.
FossilOrigin-Name: d49be9838d237b57ba1f12ed00e2d3411314ee1b9c30ef7bbaf65aca20d0870e
This commit is contained in:
@ -698,7 +698,7 @@ static void geopolyAddSegments(
|
||||
){
|
||||
unsigned int i;
|
||||
GeoCoord *x;
|
||||
for(i=0; i<pPoly->nVertex-1; i++){
|
||||
for(i=0; i<(unsigned)pPoly->nVertex-1; i++){
|
||||
x = pPoly->a + (i*2);
|
||||
geopolyAddOneSegment(p, x[0], x[1], x[2], x[3], side, i);
|
||||
}
|
||||
|
Reference in New Issue
Block a user