diff options
author | Alex Gorrod <alexander.gorrod@mongodb.com> | 2016-09-16 06:21:24 +0000 |
---|---|---|
committer | Alex Gorrod <alexander.gorrod@mongodb.com> | 2016-09-16 06:21:24 +0000 |
commit | 5bc03723a7e77c96b1d5e45a97173654872c727a (patch) | |
tree | f0d12b535fee95b721d8d046c3e4dfbfec0a91e2 /examples/c/ex_stat.c | |
parent | deeb0f589aab43f0d4b8d97755ed1e13808dcfab (diff) | |
parent | 03bbd9d3c9330a5b6e3cbd7d2db1ac7fea5e96bf (diff) | |
download | mongodb-3.3.14.tar.gz |
Merge branch 'develop' into mongodb-3.4mongodb-3.3.14mongodb-3.3.13
Diffstat (limited to 'examples/c/ex_stat.c')
-rw-r--r-- | examples/c/ex_stat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/c/ex_stat.c b/examples/c/ex_stat.c index ba473d6be04..cf9e8fb97d1 100644 --- a/examples/c/ex_stat.c +++ b/examples/c/ex_stat.c @@ -63,7 +63,7 @@ print_cursor(WT_CURSOR *cursor) } /*! [statistics display function] */ -int +int print_database_stats(WT_SESSION *session) { WT_CURSOR *cursor; @@ -81,7 +81,7 @@ print_database_stats(WT_SESSION *session) return (ret); } -int +int print_file_stats(WT_SESSION *session) { WT_CURSOR *cursor; @@ -99,7 +99,7 @@ print_file_stats(WT_SESSION *session) return (ret); } -int +int print_join_cursor_stats(WT_SESSION *session) { WT_CURSOR *idx_cursor, *join_cursor, *stat_cursor; |