summaryrefslogtreecommitdiff
path: root/src/include/os_fhandle.i
diff options
context:
space:
mode:
authorKeith Bostic <keith@wiredtiger.com>2016-04-19 14:35:41 -0400
committerKeith Bostic <keith@wiredtiger.com>2016-04-19 14:35:41 -0400
commite50d5359a045f972d6e9dd3bcab3dc4647c00961 (patch)
tree5c6b1747b1c698315ed562b4cd3fa244e8a6fbe0 /src/include/os_fhandle.i
parent0e0c3426bb6cb6f51e07f4d7ff27517aa05e230b (diff)
downloadmongo-e50d5359a045f972d6e9dd3bcab3dc4647c00961.tar.gz
WT-2539 Make streams a separate handle type from files.
Whitespace.
Diffstat (limited to 'src/include/os_fhandle.i')
-rw-r--r--src/include/os_fhandle.i3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/os_fhandle.i b/src/include/os_fhandle.i
index f23bafca3d8..4a5d7d2c3a7 100644
--- a/src/include/os_fhandle.i
+++ b/src/include/os_fhandle.i
@@ -105,8 +105,7 @@ __wt_ftruncate(WT_SESSION_IMPL *session, WT_FH *fh, wt_off_t len)
WT_ASSERT(session, !F_ISSET(S2C(session), WT_CONN_READONLY));
WT_RET(__wt_verbose(session, WT_VERB_HANDLEOPS,
- "%s: handle-truncate: %" PRIuMAX,
- fh->name, (uintmax_t)len));
+ "%s: handle-truncate: %" PRIuMAX, fh->name, (uintmax_t)len));
return (fh->fh_truncate(session, fh, len));
}