summaryrefslogtreecommitdiffstats
path: root/host/utils
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-07-24 00:11:44 -0700
committerJosh Blum <josh@joshknows.com>2010-07-24 00:11:44 -0700
commit5ba60fa140d2f6e96aea1394554232809b3eeae9 (patch)
tree34cd91b4d9c4e0258e55f108ad4b51999d1004a9 /host/utils
parent707b103ce5f3b9cc299e741c968c35bd4038b610 (diff)
downloaduhd-5ba60fa140d2f6e96aea1394554232809b3eeae9.tar.gz
uhd-5ba60fa140d2f6e96aea1394554232809b3eeae9.tar.bz2
uhd-5ba60fa140d2f6e96aea1394554232809b3eeae9.zip
usrp: removed gain handler code (replaced by gain group)
Diffstat (limited to 'host/utils')
-rw-r--r--host/utils/uhd_usrp_probe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/utils/uhd_usrp_probe.cpp b/host/utils/uhd_usrp_probe.cpp
index 9587ea9a3..097317516 100644
--- a/host/utils/uhd_usrp_probe.cpp
+++ b/host/utils/uhd_usrp_probe.cpp
@@ -89,7 +89,7 @@ static std::string get_subdev_pp_string(const std::string &type, wax::obj subdev
ss << boost::format("Gain range %s: %.1f to %.1f step %.1f dB") % gain_name % gain_range.min % gain_range.max % gain_range.step << std::endl;
}
- ss << boost::format("Connection Type: %c") % (subdev[usrp::SUBDEV_PROP_CONNECTION].as<usrp::subdev_conn_t>()) << std::endl;
+ ss << boost::format("Connection Type: %c") % char(subdev[usrp::SUBDEV_PROP_CONNECTION].as<usrp::subdev_conn_t>()) << std::endl;
ss << boost::format("Uses LO offset: %s") % (subdev[usrp::SUBDEV_PROP_USE_LO_OFFSET].as<bool>()? "Yes" : "No") << std::endl;
return ss.str();