From 77eceafd336cd00dd7cd9ea208ff461991d89db3 Mon Sep 17 00:00:00 2001 From: Jeff Lounsbury Date: Fri, 7 Jun 2002 18:16:55 +0000 Subject: [PATCH] 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 --- loader/pgsql2shp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/loader/pgsql2shp.c b/loader/pgsql2shp.c index bf3bcd3c9..dbd684922 100644 --- a/loader/pgsql2shp.c +++ b/loader/pgsql2shp.c @@ -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.");