summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_aio.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/rgw/rgw_aio.cc')
-rw-r--r--src/rgw/rgw_aio.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rgw/rgw_aio.cc b/src/rgw/rgw_aio.cc
index 7fba58ad63f..d2e56c57298 100644
--- a/src/rgw/rgw_aio.cc
+++ b/src/rgw/rgw_aio.cc
@@ -76,12 +76,12 @@ struct Handler {
librados::IoCtx ctx;
AioResult& r;
// write callback
- void operator()(boost::system::error_code ec) const {
+ void operator()(boost::system::error_code ec, version_t) const {
r.result = -ec.value();
throttle->put(r);
}
// read callback
- void operator()(boost::system::error_code ec, bufferlist bl) const {
+ void operator()(boost::system::error_code ec, version_t, bufferlist bl) const {
r.result = -ec.value();
r.data = std::move(bl);
throttle->put(r);