[GRASS-SVN] r57954 - grass/trunk/vector/v.in.lidar
svn_grass at osgeo.org
svn_grass at osgeo.org
Mon Oct 7 01:30:12 PDT 2013
Author: martinl
Date: 2013-10-07 01:30:10 -0700 (Mon, 07 Oct 2013)
New Revision: 57954
Modified:
grass/trunk/vector/v.in.lidar/main.c
Log:
v.in.lidar: fix compilation, typo in variable
Modified: grass/trunk/vector/v.in.lidar/main.c
===================================================================
--- grass/trunk/vector/v.in.lidar/main.c 2013-10-07 07:09:12 UTC (rev 57953)
+++ grass/trunk/vector/v.in.lidar/main.c 2013-10-07 08:30:10 UTC (rev 57954)
@@ -231,7 +231,7 @@
/* Don't crash on cmd line if file not found */
if (access(in_opt->answer, F_OK) != 0) {
- G_fatal_error(_("Input file <%s> does not exist"), infile);
+ G_fatal_error(_("Input file <%s> does not exist"), in_opt->answer);
}
/* Open LAS file*/
LAS_reader = LASReader_Create(in_opt->answer);
More information about the grass-commit
mailing list