diff options
Diffstat (limited to 'host/examples')
-rw-r--r-- | host/examples/sync_to_gps.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/host/examples/sync_to_gps.cpp b/host/examples/sync_to_gps.cpp index f27c3eff5..3a9b5c7e4 100644 --- a/host/examples/sync_to_gps.cpp +++ b/host/examples/sync_to_gps.cpp @@ -99,7 +99,8 @@ int UHD_SAFE_MAIN(int argc, char *argv[]) std::cout << "LOCKED" << std::endl; } else { std::cout << "FAILED" << std::endl; - throw uhd::runtime_error("Failed to lock to GPSDO 10 MHz Reference"); + std::cout << "Failed to lock to GPSDO 10 MHz Reference. Exiting." << std::endl; + exit(EXIT_FAILURE); } } else |