From 68adbe35f6163c99328fa8682414413878694ec9 Mon Sep 17 00:00:00 2001 From: Daniele Sciascia Date: Thu, 14 Feb 2019 00:37:49 +0100 Subject: [PATCH] Fixup unused parameter position in prepare_fragment_for_replication() --- dbsim/db_client_service.hpp | 1 + 1 file changed, 1 insertion(+) diff --git a/dbsim/db_client_service.hpp b/dbsim/db_client_service.hpp index fe9d632..7537390 100644 --- a/dbsim/db_client_service.hpp +++ b/dbsim/db_client_service.hpp @@ -63,6 +63,7 @@ namespace db int prepare_fragment_for_replication(wsrep::mutable_buffer&, size_t& position) override { + position = 0; return 0; } int remove_fragments() override { return 0; }