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-27 15:45:49 -0700
commitd769ff8cc3dbb579b3c050a9b184f2bdd5c9a71d (patch)
tree7a51aebff51c48a8b7d3fb833ebbaa641076a168 /host/utils
parent9775ddc5215b0d5c950757ac6ae1d3226784f670 (diff)
downloaduhd-d769ff8cc3dbb579b3c050a9b184f2bdd5c9a71d.tar.gz
uhd-d769ff8cc3dbb579b3c050a9b184f2bdd5c9a71d.tar.bz2
uhd-d769ff8cc3dbb579b3c050a9b184f2bdd5c9a71d.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();