From 5492c6af6b190e90059df16824496cc145c4b763 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Tue, 26 Apr 2016 18:47:36 +0200 Subject: [PATCH] Fix required by lintian --- src/utils/front-end-cal/main.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/utils/front-end-cal/main.cc b/src/utils/front-end-cal/main.cc index 6ee2a171c..164ee4ff6 100644 --- a/src/utils/front-end-cal/main.cc +++ b/src/utils/front-end-cal/main.cc @@ -141,7 +141,7 @@ bool front_end_capture(std::shared_ptr configuration) } catch(const boost::exception_ptr & e) { - std::cout << "Exception catched in creating source " << e << std::endl; + std::cout << "Exception caught in creating source " << e << std::endl; return 0; } @@ -152,7 +152,7 @@ bool front_end_capture(std::shared_ptr configuration) } catch(const boost::exception_ptr & e) { - std::cout << "Exception catched in creating signal conditioner " << e << std::endl; + std::cout << "Exception caught in creating signal conditioner " << e << std::endl; return 0; } gr::block_sptr sink; @@ -285,11 +285,11 @@ int main(int argc, char** argv) } catch(const boost::bad_lexical_cast & e) { - std::cout << "Exception catched while capturing samples (bad lexical cast)" << std::endl; + std::cout << "Exception caught while capturing samples (bad lexical cast)" << std::endl; } catch(const boost::io::too_few_args & e) { - std::cout << "Exception catched while capturing samples (too few args)" << std::endl; + std::cout << "Exception caught while capturing samples (too few args)" << std::endl; } // 4. Setup GNU Radio flowgraph (file_source -> Acquisition_10m) @@ -365,7 +365,7 @@ int main(int argc, char** argv) } catch(const boost::thread_resource_error & e) { - LOG(INFO) << "Exception catched (thread resource error)"; + LOG(INFO) << "Exception caught (thread resource error)"; } top_block->run(); if (start_msg == true) @@ -486,11 +486,11 @@ int main(int argc, char** argv) } catch(const std::logic_error & e) { - std::cout << "Logic error catched: " << e.what() << std::endl; + std::cout << "Logic error caught: " << e.what() << std::endl; } catch(const boost::lock_error & e) { - std::cout << "Exception catched while reading ephemeris" << std::endl; + std::cout << "Exception caught while reading ephemeris" << std::endl; } catch(int ex) { @@ -535,11 +535,11 @@ int main(int argc, char** argv) } catch(const std::logic_error & e) { - std::cout << "Logic error catched: " << e.what() << std::endl; + std::cout << "Logic error caught: " << e.what() << std::endl; } catch(const boost::lock_error & e) { - std::cout << "Exception catched while reading ephemeris" << std::endl; + std::cout << "Exception caught while reading ephemeris" << std::endl; } catch(int ex) {