From 6980ed988b8dffa5f3ca2473a88a22c4253ef055 Mon Sep 17 00:00:00 2001 From: Sage Weil Date: Fri, 9 Mar 2012 17:07:02 -0800 Subject: [PATCH] filestore: fix arguments From a change that was rebased out; missed this caller. Signed-off-by: Sage Weil --- src/os/FileStore.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/FileStore.cc b/src/os/FileStore.cc index 4f8c3e55c84c1..763793593b48f 100644 --- a/src/os/FileStore.cc +++ b/src/os/FileStore.cc @@ -4013,7 +4013,7 @@ int FileStore::_collection_rename(const coll_t &cid, const coll_t &ncid, if (ret >= 0) { int fd = ::open(new_coll, O_RDONLY); assert(fd >= 0); - _set_replay_guard(fd, NULL, NULL, spos); + _set_replay_guard(fd, spos); } dout(10) << "collection_rename '" << cid << "' to '" << ncid << "'" -- 2.39.5