fixed a bug in pgsql2shp which displayed the total DBF rows written as one less than actually was written.

git-svn-id: http://svn.osgeo.org/postgis/trunk@168 b70326c6-7e19-0410-871a-916f4a2858ee
This commit is contained in:
Jeff Lounsbury 2002-06-07 18:16:55 +00:00
parent 4f669af6e5
commit 77eceafd33

View file

@ -332,7 +332,7 @@ printf(conn_string);
}
}
printf("DBF tuple - %d added\n",i-1);
printf("DBF tuple - %d added\n",i);
if(flds==0){
printf("WARNING: There were no fields in the database. The DBF was not created properly, please add a field to the database and try again.");