Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/utility.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -569,7 +569,7 @@ BOOL PatchImport (HMODULE importmodule, moduleentry_t *patchModule)
DbgReport(L"Hook dll \"%S\" import %S!%S()\n",
strrchr(pszBuffer, '\\') + 1, patchModule->exportModuleName, importname);
} else {
DbgReport(L"Hook dll \"%S\" import %S!%zu()\n",
DbgReport(L"Hook dll \"%S\" import %S!%Iu()\n",
strrchr(pszBuffer, '\\') + 1, patchModule->exportModuleName, importname);
}
#endif
Expand Down Expand Up @@ -878,7 +878,7 @@ VOID RestoreImport (HMODULE importmodule, moduleentry_t* module)
DbgReport(L"UnHook dll \"%S\" import %S!%S()\n",
strrchr(pszBuffer, '\\') + 1, module->exportModuleName, importname);
} else {
DbgReport(L"UnHook dll \"%S\" import %S!%zu()\n",
DbgReport(L"UnHook dll \"%S\" import %S!%Iu()\n",
strrchr(pszBuffer, '\\') + 1, module->exportModuleName, importname);
}
#endif
Expand Down
2 changes: 1 addition & 1 deletion src/vld.h
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ __declspec(dllexport) int VLDResolveCallstacks();
#define VLDGetOptions() (0)
#define VLDGetReportFilename(a)
#define VLDSetOptions(a, b, c)
#define VLDSetReportHook(a, b)
#define VLDSetReportHook(a, b) (-1)
#define VLDSetModulesList(a)
#define VLDGetModulesList(a, b) (FALSE)
#define VLDSetReportOptions(a, b)
Expand Down