diff options
author | George Hazan <ghazan@miranda.im> | 2023-04-11 17:07:04 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-04-11 17:07:04 +0300 |
commit | 8f9292d483fcf3a10d9284512359c4562f5311eb (patch) | |
tree | 3593ca1eb6a5a4c3b2ef454fa6b4944d4b8da8c4 /plugins/DbChecker | |
parent | 5f4f070347d20fc85b588138217aa744141e8053 (diff) |
DB::FILE_BLOB - file events' access unification
Diffstat (limited to 'plugins/DbChecker')
-rw-r--r-- | plugins/DbChecker/src/worker.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/DbChecker/src/worker.cpp b/plugins/DbChecker/src/worker.cpp index c2e458a921..8ee18e45da 100644 --- a/plugins/DbChecker/src/worker.cpp +++ b/plugins/DbChecker/src/worker.cpp @@ -101,7 +101,7 @@ void __cdecl WorkerThread(DbToolOptions *opts) if (opts->bCheckUtf && dbei.eventType == EVENTTYPE_MESSAGE) {
if (ConvertOldEvent(dbei)) {
- db_event_edit(cc, hEvent, &dbei);
+ db_event_edit(hEvent, &dbei);
nUtfCount++;
}
}
|