Skip to content

Commit dbcddc4

Browse files
committedSep 5, 2016
Fix warning
1 parent cbe1b85 commit dbcddc4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎src/providers/postgres/qgspostgresprovider.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2310,7 +2310,7 @@ void QgsPostgresProvider::appendGeomParam( const QgsGeometry *geom, QStringList
23102310
const unsigned char *buf = convertedGeom ? convertedGeom->asWkb() : geom->asWkb();
23112311
size_t wkbSize = convertedGeom ? convertedGeom->wkbSize() : geom->wkbSize();
23122312

2313-
for ( int i = 0; i < wkbSize; ++i )
2313+
for ( size_t i = 0; i < wkbSize; ++i )
23142314
{
23152315
if ( connectionRO()->useWkbHex() )
23162316
param += QString( "%1" ).arg(( int ) buf[i], 2, 16, QChar( '0' ) );

0 commit comments

Comments
 (0)
Please sign in to comment.