diff options
author | Martin Braun <martin.braun@ettus.com> | 2015-03-11 16:14:00 -0700 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2015-03-11 16:58:09 -0700 |
commit | fae746179cbb1d8ac146dcae9b5d6cb58b366a56 (patch) | |
tree | f3b7db3841f84ded03e97b7020cb0616294b4579 /host/utils/query_gpsdo_sensors.cpp | |
parent | eed305afee7c5c34a48efd75dfb49ba20072f518 (diff) | |
download | uhd-fae746179cbb1d8ac146dcae9b5d6cb58b366a56.tar.gz uhd-fae746179cbb1d8ac146dcae9b5d6cb58b366a56.tar.bz2 uhd-fae746179cbb1d8ac146dcae9b5d6cb58b366a56.zip |
uhd: Fixed multiple compiler warnings (unused variables, missing literal f)
Diffstat (limited to 'host/utils/query_gpsdo_sensors.cpp')
-rw-r--r-- | host/utils/query_gpsdo_sensors.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/utils/query_gpsdo_sensors.cpp b/host/utils/query_gpsdo_sensors.cpp index 05f918eb4..9a40d2b42 100644 --- a/host/utils/query_gpsdo_sensors.cpp +++ b/host/utils/query_gpsdo_sensors.cpp @@ -118,7 +118,7 @@ int UHD_SAFE_MAIN(int argc, char *argv[]){ uhd::sensor_value_t rmc_string = usrp->get_mboard_sensor("gps_gprmc"); std::cout << boost::format("Printing available NMEA strings:\n"); std::cout << boost::format("%s\n%s\n%s\n") % gga_string.to_pp_string() % rmc_string.to_pp_string() % gps_time.to_pp_string(); - } catch (std::exception &e) { + } catch (std::exception &) { std::cout << "NMEA strings not implemented for this device." << std::endl; } std::cout << boost::format("UHD Device time: %.0f seconds\n") % (last_pps_time.get_real_secs()); |