Skip to content

Commit

Permalink
Fix for compiler warning
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@7271 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Oct 13, 2007
1 parent fe4278d commit 596b81b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/postgres/qgspostgresprovider.cpp
Expand Up @@ -407,7 +407,7 @@ bool QgsPostgresProvider::getNextFeature(QgsFeature& feature)
}
mFirstFetch = false;
queryResult = PQgetResult(connection);
PGresult* bla = PQgetResult(connection); //just to get the 0 pointer...
PQgetResult(connection); //just to get the 0 pointer...

int rows = PQntuples(queryResult);

Expand Down

0 comments on commit 596b81b

Please sign in to comment.