diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-05-05 09:59:23 -0400 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-05-05 09:59:23 -0400 |
commit | a95292657755b62346b46a2302445faea038d6f2 (patch) | |
tree | a78273257a628bf5166c813cebf0128367e55ace /src/os_posix/os_open.c | |
parent | 1ecf3ced6fc6a65869b34976e2b3c3279742d455 (diff) | |
download | mongo-a95292657755b62346b46a2302445faea038d6f2.tar.gz |
A somewhat different approach to --enable-verbose: inline __wt_verbose()
and the test of the verbose flag, remove all of the WT_VERBOSE_XXX #defines
other than WT_VERBOSE_ISSET.
Diffstat (limited to 'src/os_posix/os_open.c')
-rw-r--r-- | src/os_posix/os_open.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_posix/os_open.c b/src/os_posix/os_open.c index c6938dad9fd..9a0bff8df16 100644 --- a/src/os_posix/os_open.c +++ b/src/os_posix/os_open.c @@ -74,7 +74,7 @@ __wt_open(WT_SESSION_IMPL *session, fd = -1; path = NULL; - WT_VERBOSE_RET(session, fileops, "%s: open", name); + WT_RET(__wt_verbose(session, WT_VERB_FILEOPS, "%s: open", name)); /* Increment the reference count if we already have the file open. */ matched = 0; |