diff options
Diffstat (limited to 'gnuradio-runtime/lib/terminate_handler.cc')
-rw-r--r-- | gnuradio-runtime/lib/terminate_handler.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/terminate_handler.cc b/gnuradio-runtime/lib/terminate_handler.cc index 49468f4c64..3743d4730f 100644 --- a/gnuradio-runtime/lib/terminate_handler.cc +++ b/gnuradio-runtime/lib/terminate_handler.cc @@ -88,7 +88,7 @@ void terminate_handler_impl() std::cerr << "Got std::logic_error" << std::endl; std::cerr << e.what() << std::endl; } catch (const std::ios_base::failure& e) { - std::cerr << "Got std::ios_base::falure" << std::endl; + std::cerr << "Got std::ios_base::failure" << std::endl; std::cerr << e.what() << std::endl; } catch (const std::system_error& e) { std::cerr << "Got std::system_error" << std::endl; |