From 57c9aee63df032cf6a999dc323587fb85bc4059f Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Sun, 11 May 2014 12:41:08 -0700 Subject: [PATCH] shapeindex: more consistent error output --- utils/shapeindex/shapeindex.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/shapeindex/shapeindex.cpp b/utils/shapeindex/shapeindex.cpp index 96494a282..d135b52d6 100644 --- a/utils/shapeindex/shapeindex.cpp +++ b/utils/shapeindex/shapeindex.cpp @@ -98,7 +98,7 @@ int main (int argc,char** argv) } catch (std::exception const& ex) { - clog << "Error:" << ex.what() << endl; + clog << "Error: " << ex.what() << endl; return -1; } @@ -120,14 +120,14 @@ int main (int argc,char** argv) if (! mapnik::util::exists (shapename_full)) { - clog << "error : file " << shapename_full << " does not exist" << endl; + clog << "Error : file " << shapename_full << " does not exist" << endl; continue; } shape_file shp (shapename_full); if (! shp.is_open()) { - clog << "error : cannot open " << shapename_full << endl; + clog << "Error : cannot open " << shapename_full << endl; continue; }