]> git.apps.os.sepia.ceph.com Git - ceph.git/commitdiff
librbd: correct misnamed parameters in io::ImageDispatcher
authorJason Dillaman <dillaman@redhat.com>
Thu, 14 May 2020 16:33:20 +0000 (12:33 -0400)
committerJason Dillaman <dillaman@redhat.com>
Thu, 14 May 2020 16:33:20 +0000 (12:33 -0400)
It was incorrectly using to object dispatch names instead of
image.

Signed-off-by: Jason Dillaman <dillaman@redhat.com>
src/librbd/io/ImageDispatcher.h

index 9c5850e520a52cc3fdead680dadff3fc478b4521..1b6afdb2776a14370604455cf485e12d570b0576 100644 (file)
@@ -47,8 +47,8 @@ public:
 
 protected:
   bool send_dispatch(
-    ImageDispatchInterface* object_dispatch,
-    ImageDispatchSpec<ImageCtxT>* object_dispatch_spec) override;
+    ImageDispatchInterface* image_dispatch,
+    ImageDispatchSpec<ImageCtxT>* image_dispatch_spec) override;
 
 private:
   struct SendVisitor;