Skip to content

Commit

Permalink
WT-2544 KNF
Browse files Browse the repository at this point in the history
  • Loading branch information
sueloverso committed Apr 26, 2016
1 parent f66ccee commit 97a80e2
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/evict/evict_lru.c
Original file line number Diff line number Diff line change
Expand Up @@ -1630,12 +1630,11 @@ __evict_page(WT_SESSION_IMPL *session, bool is_server)
if (F_ISSET(session, WT_SESSION_INTERNAL)) {
if (is_server) {
WT_STAT_FAST_CONN_INCR(
session, cache_eviction_server_evicting);
session, cache_eviction_server_evicting);
cache->server_evicts++;
}
else {
} else {
WT_STAT_FAST_CONN_INCR(
session, cache_eviction_worker_evicting);
session, cache_eviction_worker_evicting);
cache->worker_evicts++;
}
} else {
Expand Down

0 comments on commit 97a80e2

Please sign in to comment.