[GRASS-SVN] r67362 - grass/trunk/vector/v.in.ascii

svn_grass at osgeo.org svn_grass at osgeo.org
Thu Dec 24 06:52:18 PST 2015


Author: martinl
Date: 2015-12-24 06:52:18 -0800 (Thu, 24 Dec 2015)
New Revision: 67362

Modified:
   grass/trunk/vector/v.in.ascii/main.c
Log:
v.in.ascii: remove not needed mingw32 ifdef

Modified: grass/trunk/vector/v.in.ascii/main.c
===================================================================
--- grass/trunk/vector/v.in.ascii/main.c	2015-12-24 14:04:03 UTC (rev 67361)
+++ grass/trunk/vector/v.in.ascii/main.c	2015-12-24 14:52:18 UTC (rev 67362)
@@ -535,11 +535,7 @@
 	    G_message(_("Populating table..."));
 	    db_commit_transaction(driver);
 	    if (db_close_database_shutdown_driver(driver) == DB_FAILED)
-#ifdef __MINGW32__
-		G_warning("FIXME: db_close_database_shutdown_driver() fails on WinGrass. Ignoring...");
-#else
-		G_fatal_error(_("Could not close attribute table. The DBMI driver did not accept all attributes"));
-#endif
+		G_fatal_error(_("Unable to close attribute table. The DBMI driver did not accept all attributes"));
 	}
 	fclose(tmpascii);
     }



More information about the grass-commit mailing list