aboutsummaryrefslogtreecommitdiffstats
path: root/checks
diff options
context:
space:
mode:
Diffstat (limited to 'checks')
-rw-r--r--checks/rng.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/checks/rng.cpp b/checks/rng.cpp
index 05cd4da8e..a2e53ba63 100644
--- a/checks/rng.cpp
+++ b/checks/rng.cpp
@@ -8,7 +8,7 @@ RandomNumberGenerator& global_rng()
static RandomNumberGenerator* rng = 0;
if(!rng)
- rng = make_rng();
+ rng = RandomNumberGenerator::make_rng();
return *rng;
}