summaryrefslogtreecommitdiff
path: root/src/os_posix/os_open.c
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2014-05-05 09:59:23 -0400
committerKeith Bostic <keith@wiredtiger.com>2014-05-05 09:59:23 -0400
commita95292657755b62346b46a2302445faea038d6f2 (patch)
treea78273257a628bf5166c813cebf0128367e55ace /src/os_posix/os_open.c
parent1ecf3ced6fc6a65869b34976e2b3c3279742d455 (diff)
downloadmongo-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.c2
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;