aboutsummaryrefslogtreecommitdiffstats
path: root/host/utils
diff options
context:
space:
mode:
authorAndrej Rode <andrej.rode@ettus.com>2016-12-16 17:42:40 -0800
committerMartin Braun <martin.braun@ettus.com>2017-01-12 15:15:37 -0800
commit797249bf725051a07ad128b27a7f01d7be86f01c (patch)
tree1dc86f57f4ac6059a67ca44555995d6d282d400c /host/utils
parent8cf404c6b261bed98d0f551dffbabe050c9f490e (diff)
downloaduhd-797249bf725051a07ad128b27a7f01d7be86f01c.tar.gz
uhd-797249bf725051a07ad128b27a7f01d7be86f01c.tar.bz2
uhd-797249bf725051a07ad128b27a7f01d7be86f01c.zip
utils: tests: cast RAND_MAX to double before division
Diffstat (limited to 'host/utils')
-rw-r--r--host/utils/converter_benchmark.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/host/utils/converter_benchmark.cpp b/host/utils/converter_benchmark.cpp
index c0cd28440..f6d7e9650 100644
--- a/host/utils/converter_benchmark.cpp
+++ b/host/utils/converter_benchmark.cpp
@@ -82,8 +82,8 @@ void init_random_vector_complex_float(std::vector<char> &buf_ptr, const size_t n
std::complex<T> * const buf = reinterpret_cast<std::complex<T> * const>(&buf_ptr[0]);
for (size_t i = 0; i < n_items; i++) {
buf[i] = std::complex<T>(
- T((std::rand()/double(RAND_MAX/2)) - 1),
- T((std::rand()/double(RAND_MAX/2)) - 1)
+ T(std::rand()/(RAND_MAX/2.0) - 1),
+ T(std::rand()/(RAND_MAX/2.0) - 1)
);
}
}