5
0
mirror of https://github.com/ttttupup/wxhelper.git synced 2025-04-29 08:19:48 +08:00

fix: 消除警告

This commit is contained in:
hugy 2023-07-22 09:17:20 +08:00
parent 938e7e9bc2
commit e5ead96c05

@ -459,7 +459,7 @@ std::vector<std::string> DB::GetChatMsgByMsgId(ULONG64 msgid) {
wchar_t dbname[20] = {0};
for (int i = 0;; i++) {
swprintf_s(dbname, L"MSG%d.db", i);
DWORD handle = GetDbHandleByDbName(dbname);
UINT64 handle = GetDbHandleByDbName(dbname);
if (handle == 0) {
// LOG(INFO) << "MSG db handle is null";
return {};