summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2016-01-20 13:24:03 -0500
committerSusan LoVerso <sue@wiredtiger.com>2016-01-20 13:24:03 -0500
commitdc79205bd96b65e1c17aa4173f0e7a5e046720aa (patch)
tree4fd131fac8bbcba9410caea7e6e2cd3a3cde2079
parentdc6d95bf7677de46d4c9099e5f929b6b7a8d6117 (diff)
downloadmongo-dc79205bd96b65e1c17aa4173f0e7a5e046720aa.tar.gz
WT-2267 Fix warning
-rw-r--r--bench/wtperf/config.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/wtperf/config.c b/bench/wtperf/config.c
index 8b2b1a6cad8..d9a22f4708d 100644
--- a/bench/wtperf/config.c
+++ b/bench/wtperf/config.c
@@ -237,7 +237,7 @@ config_threads(CONFIG *cfg, const char *config, size_t len)
continue;
}
if (STRING_MATCH("throttle", k.str, k.len)) {
- workp->throttle = v.val;
+ workp->throttle = (uint64_t)v.val;
continue;
}
if (STRING_MATCH("insert", k.str, k.len) ||