diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/uhd/utils.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/uhd/utils.hpp b/include/uhd/utils.hpp index 13367990e..4c95b4964 100644 --- a/include/uhd/utils.hpp +++ b/include/uhd/utils.hpp @@ -89,7 +89,7 @@ inline void tune( // Calculate the DDC setting that will downconvert the baseband from the // daughterboard to our target frequency. freq_t delta_freq = target_freq - inter_freq; - int delta_sign = std::signum(delta_freq); + freq_t delta_sign = std::signum(delta_freq); delta_freq *= delta_sign; delta_freq = fmod(delta_freq, dsp_sample_rate); bool inverted = delta_freq > dsp_sample_rate/2.0; |