summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Bostic <keith.bostic@mongodb.com>2016-03-14 15:04:42 -0400
committerKeith Bostic <keith.bostic@mongodb.com>2016-03-14 15:04:42 -0400
commit812421aae377095abf44c343027e9f2e7eaba28a (patch)
tree91c94bdff546ba2c78424114b7b3f6d178165417
parentb8868e9daa42da75b554f0fc4af8ae447b07ef1e (diff)
parent99e2a663aa0c2d4fc7cd1055cde140ce0a06169c (diff)
downloadmongo-812421aae377095abf44c343027e9f2e7eaba28a.tar.gz
Merge pull request #2583 from wiredtiger/wt-2484
WT-2484: Coverity 1345809: unchecked return value
-rw-r--r--bench/wtperf/wtperf.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/wtperf/wtperf.h b/bench/wtperf/wtperf.h
index 60efce650aa..a2b497b3142 100644
--- a/bench/wtperf/wtperf.h
+++ b/bench/wtperf/wtperf.h
@@ -337,7 +337,7 @@ generate_key(CONFIG *cfg, char *key_buf, uint64_t keyno)
static inline void
extract_key(char *key_buf, uint64_t *keynop)
{
- sscanf(key_buf, "%" SCNu64, keynop);
+ (void)sscanf(key_buf, "%" SCNu64, keynop);
}
/*