[GRASS-SVN] r40417 - grass/branches/develbranch_6/lib/vector/Vlib

svn_grass at osgeo.org svn_grass at osgeo.org
Wed Jan 13 06:54:10 EST 2010


Author: mmetz
Date: 2010-01-13 06:54:08 -0500 (Wed, 13 Jan 2010)
New Revision: 40417

Modified:
   grass/branches/develbranch_6/lib/vector/Vlib/map.c
Log:
fix warning message

Modified: grass/branches/develbranch_6/lib/vector/Vlib/map.c
===================================================================
--- grass/branches/develbranch_6/lib/vector/Vlib/map.c	2010-01-13 07:46:08 UTC (rev 40416)
+++ grass/branches/develbranch_6/lib/vector/Vlib/map.c	2010-01-13 11:54:08 UTC (rev 40417)
@@ -487,7 +487,8 @@
 		    ret =
 			db_delete_table(Fi->driver, Fi->database, Fi->table);
 		    if (ret == DB_FAILED) {
-			G_warning(_("Unable to delete table <%s>"));
+			G_warning(_("Unable to delete table <%s>"),
+			          Fi->table);
 			Vect_close(&Map);
 			return -1;
 		    }



More information about the grass-commit mailing list