summaryrefslogtreecommitdiff
path: root/src/support/cond_auto.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/support/cond_auto.c')
-rw-r--r--src/support/cond_auto.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/support/cond_auto.c b/src/support/cond_auto.c
index 69114b066ae..a3ae67f5baa 100644
--- a/src/support/cond_auto.c
+++ b/src/support/cond_auto.c
@@ -85,7 +85,7 @@ __wt_cond_auto_wait_signal(
*/
WT_ASSERT(session, cond->min_wait != 0);
- WT_STAT_FAST_CONN_INCR(session, cond_auto_wait);
+ WT_STAT_CONN_INCR(session, cond_auto_wait);
if (progress)
cond->prev_wait = cond->min_wait;
else {
@@ -97,7 +97,7 @@ __wt_cond_auto_wait_signal(
__wt_cond_wait_signal(session, cond, cond->prev_wait, signalled);
if (progress || *signalled)
- WT_STAT_FAST_CONN_INCR(session, cond_auto_wait_reset);
+ WT_STAT_CONN_INCR(session, cond_auto_wait_reset);
if (*signalled)
cond->prev_wait = cond->min_wait;
}