summaryrefslogtreecommitdiffstats
path: root/host/lib/utils
diff options
context:
space:
mode:
authorJosh Blum <josh@joshknows.com>2010-08-08 11:03:38 -0700
committerJosh Blum <josh@joshknows.com>2010-08-08 11:03:38 -0700
commit1c241c282e5c7aaddc554885e15fae1c8aa93734 (patch)
treebe6476e3f61a4897912254e0d839170df348fe68 /host/lib/utils
parent03ccbeb6411c0c13adf54bde4c19372ffa141aa0 (diff)
downloaduhd-1c241c282e5c7aaddc554885e15fae1c8aa93734.tar.gz
uhd-1c241c282e5c7aaddc554885e15fae1c8aa93734.tar.bz2
uhd-1c241c282e5c7aaddc554885e15fae1c8aa93734.zip
uhd: fix device recv docs on timeout, also fix typo
Diffstat (limited to 'host/lib/utils')
-rw-r--r--host/lib/utils/gain_group.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/lib/utils/gain_group.cpp b/host/lib/utils/gain_group.cpp
index 1be09dee2..c113719c8 100644
--- a/host/lib/utils/gain_group.cpp
+++ b/host/lib/utils/gain_group.cpp
@@ -131,7 +131,7 @@ private:
//! get the gain function sets in order (highest priority first)
std::vector<gain_fcns_t> get_all_fcns(void){
std::vector<gain_fcns_t> all_fcns;
- BOOST_FOREACH(ssize_t key, std::sorted(_registry.keys())){
+ BOOST_FOREACH(size_t key, std::sorted(_registry.keys())){
const std::vector<gain_fcns_t> &fcns = _registry[key];
all_fcns.insert(all_fcns.begin(), fcns.begin(), fcns.end());
}