[Liblas-commits] hg-main-tree: oops, put err mssg back in

liblas-commits at liblas.org liblas-commits at liblas.org
Tue Aug 16 15:15:34 EDT 2011


details:   http://hg.libpc.orghg-main-tree/rev/c386fd94bb89
changeset: 1114:c386fd94bb89
user:      Michael P. Gerlek <mpg at flaxen.com>
date:      Tue Aug 16 12:15:18 2011 -0700
description:
oops, put err mssg back in

diffstat:

 apps/Application.cpp |  3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diffs (13 lines):

diff -r 46e987465d22 -r c386fd94bb89 apps/Application.cpp
--- a/apps/Application.cpp	Tue Aug 16 12:12:56 2011 -0700
+++ b/apps/Application.cpp	Tue Aug 16 12:15:18 2011 -0700
@@ -117,7 +117,8 @@
     }
     catch (app_usage_error e)
     {
-        printError(e.what());
+        std::string s("Usage error: ");
+        printError(s + e.what());
         outputHelp();
         return 1;
     }


More information about the Liblas-commits mailing list