From 8ab82f9817718376b180eb718769dd19b548aa46 Mon Sep 17 00:00:00 2001 From: Carles Fernandez Date: Wed, 23 Mar 2022 13:15:14 +0100 Subject: [PATCH] Fix building with newest GNU Radio --- src/utils/front-end-cal/main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/front-end-cal/main.cc b/src/utils/front-end-cal/main.cc index 38ee8206c..42d7a7601 100644 --- a/src/utils/front-end-cal/main.cc +++ b/src/utils/front-end-cal/main.cc @@ -344,9 +344,9 @@ int main(int argc, char** argv) { std::cout << "Exception caught while capturing samples (bad lexical cast)\n"; } - catch (const boost::io::too_few_args& e) + catch (const std::exception& e) { - std::cout << "Exception caught while capturing samples (too few args)\n"; + std::cout << "Exception caught while capturing samples: " << e.what() << '\n'; } catch (...) {