Skip to content

Commit

Permalink
fix argument error message for true/false (#2039)
Browse files Browse the repository at this point in the history
  • Loading branch information
candrsn authored and hobu committed May 31, 2018
1 parent d016adf commit ef77664
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion io/LasReader.cpp
Expand Up @@ -476,7 +476,7 @@ void LasReader::readExtraBytesVlr()
}
if (m_extraDims.size() && m_extraDims != extraDims)
log()->get(LogLevel::Warning) << "Extra byte dimensions specified "
"in pineline and VLR don't match. Ignoring pipeline-specified "
"in pipeline and VLR don't match. Ignoring pipeline-specified "
"dimensions";
m_extraDims = extraDims;
}
Expand Down
2 changes: 1 addition & 1 deletion pdal/util/ProgramArgs.hpp
Expand Up @@ -1487,7 +1487,7 @@ class ProgramArgs
{
throw arg_error("Value '" + value +
"' provided for argument '" + name +
"' when none is expected.");
"' when 'true' or 'false' is expected.");
}
}
else
Expand Down

0 comments on commit ef77664

Please sign in to comment.