diff options
Diffstat (limited to 'plugins/Dbx_mdbx/src')
-rw-r--r-- | plugins/Dbx_mdbx/src/dbintf.cpp | 2 | ||||
-rw-r--r-- | plugins/Dbx_mdbx/src/dbintf.h | 2 |
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;
|