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/lib/usrp_clock/octoclock | |
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/lib/usrp_clock/octoclock')
-rw-r--r-- | host/lib/usrp_clock/octoclock/octoclock_impl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/usrp_clock/octoclock/octoclock_impl.cpp b/host/lib/usrp_clock/octoclock/octoclock_impl.cpp index d55fab10e..b98d95725 100644 --- a/host/lib/usrp_clock/octoclock/octoclock_impl.cpp +++ b/host/lib/usrp_clock/octoclock/octoclock_impl.cpp @@ -417,7 +417,7 @@ std::string octoclock_impl::_get_images_help_message(const std::string &addr){ try{ image_location = uhd::find_image_path(image_name); } - catch(const std::exception &e){ + catch(const std::exception &){ return str(boost::format("Could not find %s in your images path.\n%s") % image_name % uhd::print_utility_error("uhd_images_downloader.py")); |