summaryrefslogtreecommitdiff
path: root/test/manydbs
diff options
context:
space:
mode:
authorSusan LoVerso <sue@mongodb.com>2016-03-14 15:37:06 -0400
committerSusan LoVerso <sue@mongodb.com>2016-03-14 15:37:06 -0400
commit4e9c4ccfd5280e0b7c0e1a31aa4dd84b5b8d41c2 (patch)
treed72a80ba2d966f6d552cc2729734220519224988 /test/manydbs
parente52c6e6ad35338fc55a78ebfbe142c9568565960 (diff)
downloadmongo-4e9c4ccfd5280e0b7c0e1a31aa4dd84b5b8d41c2.tar.gz
WT-2463 Fix warning.
Diffstat (limited to 'test/manydbs')
-rw-r--r--test/manydbs/manydbs.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/manydbs/manydbs.c b/test/manydbs/manydbs.c
index e71ebd936f0..1472fd9de17 100644
--- a/test/manydbs/manydbs.c
+++ b/test/manydbs/manydbs.c
@@ -86,13 +86,13 @@ WT_RAND_STATE rnd;
WT_SESSION **session = NULL;
static int
-get_stat(WT_SESSION *session, int stat_field, uint64_t *valuep)
+get_stat(WT_SESSION *stat_session, int stat_field, uint64_t *valuep)
{
WT_CURSOR *statc;
const char *desc, *pvalue;
int ret;
- testutil_check(session->open_cursor(session,
+ testutil_check(stat_session->open_cursor(stat_session,
"statistics:", NULL, NULL, &statc));
statc->set_key(statc, stat_field);
if ((ret = statc->search(statc)) != 0)