diff options
author | Keith Bostic <keith@wiredtiger.com> | 2012-04-26 22:59:33 +0000 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2012-04-26 22:59:33 +0000 |
commit | f77fc2d51a01e5bb54c392cf92584105f1567dff (patch) | |
tree | 5d9fbfd561cbb682ed06ebb102f297ce920e52c3 /src/os_posix/os_fsync.c | |
parent | 9c5a59cf103f033e47595fcba8ddf63774339e76 (diff) | |
download | mongo-f77fc2d51a01e5bb54c392cf92584105f1567dff.tar.gz |
Replace local "ret" declarations with WT_DECL_RET.
Diffstat (limited to 'src/os_posix/os_fsync.c')
-rw-r--r-- | src/os_posix/os_fsync.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/os_posix/os_fsync.c b/src/os_posix/os_fsync.c index 3874510d946..9a6fe5bc2ab 100644 --- a/src/os_posix/os_fsync.c +++ b/src/os_posix/os_fsync.c @@ -14,7 +14,7 @@ int __wt_fsync(WT_SESSION_IMPL *session, WT_FH *fh) { - int ret; + WT_DECL_RET; WT_VERBOSE(session, fileops, "%s: fsync", fh->name); |