aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDerek Kozel <derek@bitstovolts.com>2018-11-26 01:06:36 +0000
committermichael-west <michael.west@ettus.com>2018-12-17 13:38:02 -0800
commit66b0173b8bd56239a0cdeaff57da6252b5e96e2a (patch)
tree5935b47f2383a85e101d94cc8a9a5a8bc93e3c4c
parentDocs: Adjust E310 functional verification tests (diff)
downloaduhd-66b0173b8bd56239a0cdeaff57da6252b5e96e2a.tar.xz
uhd-66b0173b8bd56239a0cdeaff57da6252b5e96e2a.zip
filter: Fix return value in get_rolloff
-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)