diff options
author | Michael Cahill <michael.cahill@mongodb.com> | 2015-05-25 17:17:36 +1000 |
---|---|---|
committer | Michael Cahill <michael.cahill@mongodb.com> | 2015-05-25 17:17:36 +1000 |
commit | 174969ffd306bc00eff8e36f9a14683360caf84b (patch) | |
tree | 58971d4ccaa30b4b00a10ce8daf865ff2677651a /test | |
parent | 231ccc61573962dc4594fb322b69372e99f0ca74 (diff) | |
download | mongo-174969ffd306bc00eff8e36f9a14683360caf84b.tar.gz |
Fixes for macro name changes after cherry picking.
Diffstat (limited to 'test')
-rw-r--r-- | test/fops/fops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/fops/fops.c b/test/fops/fops.c index 21c37268f8e..a3d0b8a9959 100644 --- a/test/fops/fops.c +++ b/test/fops/fops.c @@ -144,7 +144,7 @@ fop(void *arg) break; case 3: ++s->drop; - obj_drop(__wt_random(rnd) & 1); + obj_drop(r() & 1); break; case 4: ++s->ckpt; @@ -160,11 +160,11 @@ fop(void *arg) break; case 7: ++s->bulk_unique; - obj_bulk_unique(__wt_random(rnd) & 1); + obj_bulk_unique(r() & 1); break; case 8: ++s->create_unique; - obj_create_unique(__wt_random(rnd) & 1); + obj_create_unique(r() & 1); break; } |