[GRASS-SVN] r33138 - grass/trunk/lib/vector/Vlib
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Aug 28 11:43:03 EDT 2008
Author: glynn
Date: 2008-08-28 11:42:49 -0400 (Thu, 28 Aug 2008)
New Revision: 33138
Modified:
grass/trunk/lib/vector/Vlib/read.c
Log:
Fix stray character (causes compilation failure #ifndef HAVE_OGR)
Modified: grass/trunk/lib/vector/Vlib/read.c
===================================================================
--- grass/trunk/lib/vector/Vlib/read.c 2008-08-28 15:39:22 UTC (rev 33137)
+++ grass/trunk/lib/vector/Vlib/read.c 2008-08-28 15:42:49 UTC (rev 33138)
@@ -29,7 +29,7 @@
#ifndef HAVE_OGR
static int format()
{
- G_fatal_error(_("Requested format is not compiled in this version") x);
+ G_fatal_error(_("Requested format is not compiled in this version"));
return 0;
}
#endif
More information about the grass-commit
mailing list