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

Stupid mistake from commit 7cb803ad
This commit is contained in:
Max Kellermann 2015-06-22 22:02:12 +02:00
parent b4fc2e38ab
commit 680d03e4d6

View File

@ -34,7 +34,7 @@ struct RandomInt {
"RNG result type too small");
T operator()() {
return T(random());
return T(engine());
}
};