aboutsummaryrefslogtreecommitdiffstats
path: root/host/include
diff options
context:
space:
mode:
authorDerek Kozel <derek@bitstovolts.com>2018-11-26 01:06:36 +0000
committerMartin Braun <martin.braun@ettus.com>2018-11-28 14:24:47 -0800
commit7c22fa5e134cbfc50a36cc99a4ffdf38480183c8 (patch)
tree50f25b96dbaff7d25257f80f86f519fdce5631b8 /host/include
parent84018da8b5022d75b463dd562e2ff45a6b3ae5fc (diff)
downloaduhd-7c22fa5e134cbfc50a36cc99a4ffdf38480183c8.tar.gz
uhd-7c22fa5e134cbfc50a36cc99a4ffdf38480183c8.tar.bz2
uhd-7c22fa5e134cbfc50a36cc99a4ffdf38480183c8.zip
filter: Fix return value in get_rolloff
Diffstat (limited to 'host/include')
-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 21a826892..9879774cc 100644
--- a/host/include/uhd/types/filters.hpp
+++ b/host/include/uhd/types/filters.hpp
@@ -125,7 +125,7 @@ namespace uhd{
UHD_INLINE double get_rolloff()
{
- return _cutoff;
+ return _rolloff;
}
UHD_INLINE void set_cutoff(const double cutoff)