Skip to content

Commit

Permalink
Fix R CMD check
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Romain committed Aug 29, 2019
1 parent 2e03f53 commit f523b7a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion R/readLAS.r
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#'
#' Reads data from .las or .laz files in format 1 to 4 according to LAS specifications and returns
#' a \code{data.table} labeled according to LAS specifications. See the ASPRS documentation for the
#' \href{http://www.asprs.org/a/society/committees/standards/LAS_1_4_r13.pdf}{LAS file format}.
#' \href{https://www.asprs.org/a/society/committees/standards/LAS_1_4_r13.pdf}{LAS file format}.
#' The optional parameters enable the user to save memory by choosing to load only the
#' fields they need. Moreover, the function provides a streaming filter to load only the points of
#' interest into the memory and hence avoids allocating any superfluous memory.
Expand Down
2 changes: 1 addition & 1 deletion man/read.las.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/LASlib/lasreader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1704,7 +1704,7 @@ BOOL LASreadOpener::parse(int argc, char* argv[])
REprintf("ERROR: '%s' needs 1 argument: list_of_files\n", argv[i]);
return FALSE;
}
if (!add_list_of_files(argv[i+1]), unique)
if (!add_list_of_files(argv[i+1], unique))
{
REprintf( "ERROR: cannot load list of files '%s'\n", argv[i+1]);
return FALSE;
Expand Down

0 comments on commit f523b7a

Please sign in to comment.