Commit 680d03e4 authored by Max Kellermann's avatar Max Kellermann

test/test_pcm_util: call the C++11 random engine instead of random()

Stupid mistake from commit 7cb803ad
parent b4fc2e38
...@@ -34,7 +34,7 @@ struct RandomInt { ...@@ -34,7 +34,7 @@ struct RandomInt {
"RNG result type too small"); "RNG result type too small");
T operator()() { T operator()() {
return T(random()); return T(engine());
} }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment