[Liblas-commits] r1297 - branches/1.2/apps
liblas-commits at liblas.org
liblas-commits at liblas.org
Mon Jun 8 22:42:22 EDT 2009
Author: hobu
Date: Mon Jun 8 22:42:21 2009
New Revision: 1297
URL: http://liblas.org/changeset/1297
Log:
backport r1293 for #139
Modified:
branches/1.2/apps/txt2las.c
Modified: branches/1.2/apps/txt2las.c
==============================================================================
--- branches/1.2/apps/txt2las.c (original)
+++ branches/1.2/apps/txt2las.c Mon Jun 8 22:42:21 2009
@@ -253,7 +253,7 @@
"WARNING: point source ID %d is out of range of unsigned short\n",
temp_i);
/* point->point_source_ID = temp_i & 65535; */
- LASPoint_SetPointSourceId(point, temp_i & 65535);
+ LASPoint_SetPointSourceId(point, temp_i);
/*// then advance to next white space */
while (l[0] && l[0] != ' ' && l[0] != ',' && l[0] != '\t') l++;
}
More information about the Liblas-commits
mailing list