summaryrefslogtreecommitdiff
path: root/src/cursor/cur_stat.c
diff options
context:
space:
mode:
authorKeith Bostic <keith.bostic@mongodb.com>2017-04-07 16:55:32 -0400
committerAlex Gorrod <alexander.gorrod@mongodb.com>2017-04-07 16:55:32 -0400
commitab281e0a4f312f99494cdb381264196278c18a2f (patch)
tree080909f5d00561bfe78e78dc0c96cd2d1aa2e1d1 /src/cursor/cur_stat.c
parent84e6ac0e67019bba22af87b99b40bb0bc0e21157 (diff)
downloadmongo-ab281e0a4f312f99494cdb381264196278c18a2f.tar.gz
WT-3269 Miscellaneous cleanup (#3377)
I missed two copyright notices when updating from 2016 to 2017. * Cleanup, one of the temporary copyright files wasn't being removed on exit. * Don't use S2C/S2BT if there's already a local conn/btree variable. * Fix some indentation, minor whitespace. * clang warning: Value stored to 'pgs_evicted_cur' is never read * __wt_thread_group_start_one and __wt_thread_group_stop_one no longer return errors, clean up error handling and comments in __evict_tune_workers, and __evict_tune_workers itself no longer returns an error. * Give test/syscall/wt2336_base/base.run a standard copyright notice, so dist/s_copyright doesn't have to treat it as a special case.
Diffstat (limited to 'src/cursor/cur_stat.c')
-rw-r--r--src/cursor/cur_stat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cursor/cur_stat.c b/src/cursor/cur_stat.c
index 1c543023779..0f5b40bee40 100644
--- a/src/cursor/cur_stat.c
+++ b/src/cursor/cur_stat.c
@@ -478,7 +478,7 @@ __curstat_join_desc(WT_CURSOR_STAT *cst, int slot, const char **resultp)
strlen(static_desc) + 1;
WT_RET(__wt_realloc(session, NULL, len, &cst->desc_buf));
WT_RET(__wt_snprintf(
- cst->desc_buf, len, "join: %s%s", sgrp->desc_prefix, static_desc));
+ cst->desc_buf, len, "join: %s%s", sgrp->desc_prefix, static_desc));
*resultp = cst->desc_buf;
return (0);
}