diff options
Diffstat (limited to 'gnuradio-runtime/lib')
-rw-r--r-- | gnuradio-runtime/lib/pmt/pmt.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-runtime/lib/pmt/pmt.cc b/gnuradio-runtime/lib/pmt/pmt.cc index d14e695763..7ea1c9a5b5 100644 --- a/gnuradio-runtime/lib/pmt/pmt.cc +++ b/gnuradio-runtime/lib/pmt/pmt.cc @@ -37,7 +37,7 @@ exception::exception(const std::string& msg, pmt_t obj) } wrong_type::wrong_type(const std::string& msg, pmt_t obj) - : exception(msg + ": wrong_type ", obj) + : invalid_argument(msg + ": wrong_type " + write_string(obj)) { } |