1
0
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:
drh
2018-08-25 18:57:12 +00:00
parent a961d3a198
commit 95327f539b
3 changed files with 8 additions and 8 deletions

View File

@ -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);
}