From 69a14fd968f22a366d784223adec10f287abd747 Mon Sep 17 00:00:00 2001 From: Jason Dillaman Date: Thu, 14 May 2020 12:33:20 -0400 Subject: [PATCH] librbd: correct misnamed parameters in io::ImageDispatcher It was incorrectly using to object dispatch names instead of image. Signed-off-by: Jason Dillaman --- src/librbd/io/ImageDispatcher.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librbd/io/ImageDispatcher.h b/src/librbd/io/ImageDispatcher.h index 9c5850e520a..1b6afdb2776 100644 --- a/src/librbd/io/ImageDispatcher.h +++ b/src/librbd/io/ImageDispatcher.h @@ -47,8 +47,8 @@ public: protected: bool send_dispatch( - ImageDispatchInterface* object_dispatch, - ImageDispatchSpec* object_dispatch_spec) override; + ImageDispatchInterface* image_dispatch, + ImageDispatchSpec* image_dispatch_spec) override; private: struct SendVisitor; -- 2.39.5