diff options
Diffstat (limited to '')
-rw-r--r-- | test/test_pcm_util.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test_pcm_util.hxx b/test/test_pcm_util.hxx index f1efbc666..3ac84c307 100644 --- a/test/test_pcm_util.hxx +++ b/test/test_pcm_util.hxx @@ -1,5 +1,5 @@ /* - * Copyright (C) 2003-2014 The Music Player Daemon Project + * Copyright (C) 2003-2015 The Music Player Daemon Project * http://www.musicpd.org * * This program is free software; you can redistribute it and/or modify @@ -34,7 +34,7 @@ struct RandomInt { "RNG result type too small"); T operator()() { - return T(random()); + return T(engine()); } }; |