summaryrefslogtreecommitdiff
path: root/plugins/Dbx_mdbx
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-08-07 15:11:21 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-08-07 15:11:21 +0300
commit58cb6e6f41c9773b96e1cf9f0cce58c4078b3b46 (patch)
tree69795a2702b6f41d93aa3d89ceb3330b81d3211f /plugins/Dbx_mdbx
parent933b2a7a59948d3195aafc604d4d5711fa4a6345 (diff)
code cleaning
Diffstat (limited to 'plugins/Dbx_mdbx')
-rw-r--r--plugins/Dbx_mdbx/src/dbintf.cpp2
-rw-r--r--plugins/Dbx_mdbx/src/dbintf.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Dbx_mdbx/src/dbintf.cpp b/plugins/Dbx_mdbx/src/dbintf.cpp
index 8a28dfe589..6803f2d322 100644
--- a/plugins/Dbx_mdbx/src/dbintf.cpp
+++ b/plugins/Dbx_mdbx/src/dbintf.cpp
@@ -308,7 +308,7 @@ static CheckWorker Workers[] =
&CDbxMDBX::CheckEvents1
};
-int CDbxMDBX::CheckDb(int phase, int)
+int CDbxMDBX::CheckDb(int phase)
{
if (phase >= _countof(Workers))
return ERROR_OUT_OF_PAPER;
diff --git a/plugins/Dbx_mdbx/src/dbintf.h b/plugins/Dbx_mdbx/src/dbintf.h
index a16b7f85ee..7a563f68d8 100644
--- a/plugins/Dbx_mdbx/src/dbintf.h
+++ b/plugins/Dbx_mdbx/src/dbintf.h
@@ -309,7 +309,7 @@ protected:
}
STDMETHODIMP_(BOOL) Start(DBCHeckCallback *callback);
- STDMETHODIMP_(BOOL) CheckDb(int phase, int firstTime);
+ STDMETHODIMP_(BOOL) CheckDb(int phase);
STDMETHODIMP_(VOID) Destroy();
DBCHeckCallback *cb;