Explorar el Código

v.in.ascii: remove not needed mingw32 ifdef (avoid workarounds)
(merge https://trac.osgeo.org/grass/changeset/67362 from trunk)


git-svn-id: https://svn.osgeo.org/grass/grass/branches/releasebranch_7_0@67363 15284696-431f-4ddb-bdfa-cd5b030d7da7

Martin Landa hace 9 años
padre
commit
f4ca1dec9e
Se han modificado 1 ficheros con 1 adiciones y 5 borrados
  1. 1 5
      vector/v.in.ascii/main.c

+ 1 - 5
vector/v.in.ascii/main.c

@@ -535,11 +535,7 @@ int main(int argc, char *argv[])
 	    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);
     }