From c97c017eccc22cb04ae20d909e24bdca6709abbc Mon Sep 17 00:00:00 2001 From: Tomasz Golinski Date: Mon, 6 Jul 2020 17:15:53 +0200 Subject: [PATCH] Cppcheck: fix argument name mismatch --- ocdb.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ocdb.h b/ocdb.h index ac48260..4c4fbf8 100644 --- a/ocdb.h +++ b/ocdb.h @@ -30,7 +30,7 @@ public: explicit OCdb(const std::string& db_file); ~OCdb(); - bool init(const std::string& json_file); // read db dump + bool init(const std::string& dump_path); // read db dump bool update(const Okapi& oc); // apply changelog int get_revision() const; void set_revision(int rev);