aboutsummaryrefslogtreecommitdiffstats
path: root/host
diff options
context:
space:
mode:
Diffstat (limited to 'host')
-rw-r--r--host/include/uhd/types/filters.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/host/include/uhd/types/filters.hpp b/host/include/uhd/types/filters.hpp
index 0cb23b294..976ae233d 100644
--- a/host/include/uhd/types/filters.hpp
+++ b/host/include/uhd/types/filters.hpp
@@ -224,7 +224,7 @@ namespace uhd{
"\ttaps: "<<std::endl;
os<<"\t\t";
- for(int i = 0; i < _taps.size(); i++)
+ for(size_t i = 0; i < _taps.size(); i++)
{
os<<"(tap "<<i<<": "<<_taps[i]<<")";
if( ((i%10) == 0) && (i != 0))