From d1c6290fe9c8b01068abfca6f272e2a1e031b9de Mon Sep 17 00:00:00 2001 From: StefanBruens Date: Wed, 5 May 2021 18:49:40 +0200 Subject: usrp2: Use explicit template type for std::min Signed-off-by: Aaron Rossetto --- host/lib/usrp/usrp2/usrp2_impl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host/lib/usrp/usrp2/usrp2_impl.cpp') diff --git a/host/lib/usrp/usrp2/usrp2_impl.cpp b/host/lib/usrp/usrp2/usrp2_impl.cpp index 59fd9849c..e82a9fa71 100644 --- a/host/lib/usrp/usrp2/usrp2_impl.cpp +++ b/host/lib/usrp/usrp2/usrp2_impl.cpp @@ -917,7 +917,7 @@ double usrp2_impl::set_tx_dsp_freq(const std::string& mb, const double freq_) const double tick_rate = _tree->access("/mboards/" + mb + "/tick_rate").get(); // calculate the DAC shift (multiples of rate) - const int zone = std::max(std::min(std::lround(new_freq / tick_rate), 2), -2); + const int zone = std::max(std::min(std::lround(new_freq / tick_rate), 2), -2); const double dac_shift = zone * tick_rate; new_freq -= dac_shift; // update FPGA DSP target freq UHD_LOG_TRACE("USRP2", -- cgit v1.2.3