[GRASS-SVN] r33145 - grass/branches/develbranch_6/lib/vector/Vlib
svn_grass at osgeo.org
svn_grass at osgeo.org
Thu Aug 28 18:05:47 EDT 2008
Author: martinl
Date: 2008-08-28 18:05:46 -0400 (Thu, 28 Aug 2008)
New Revision: 33145
Modified:
grass/branches/develbranch_6/lib/vector/Vlib/write.c
Log:
glynn: Fix type mismatch
(merge from trunk, r33139)
Modified: grass/branches/develbranch_6/lib/vector/Vlib/write.c
===================================================================
--- grass/branches/develbranch_6/lib/vector/Vlib/write.c 2008-08-28 22:03:15 UTC (rev 33144)
+++ grass/branches/develbranch_6/lib/vector/Vlib/write.c 2008-08-28 22:05:46 UTC (rev 33145)
@@ -46,6 +46,13 @@
G_fatal_error(_("Requested format is not compiled in this version"));
return 0;
}
+
+static long format_l()
+{
+ G_fatal_error(_("Requested format is not compiled in this version"));
+ return 0;
+}
+
#endif
static long (*Write_line_array[][3]) () = {
@@ -56,7 +63,7 @@
write_dummy, write_dummy, write_dummy}
#else
, {
- write_dummy, format, format}
+ write_dummy, format_l, format_l}
#endif
};
More information about the grass-commit
mailing list