Commit 49482c95 authored by Alexandre Julliard's avatar Alexandre Julliard

loadperf: Fix printf format warnings on 64-bit.

parent 08ebfed5
......@@ -71,7 +71,7 @@ DWORD WINAPI InstallPerfDllA(LPCSTR computer, LPCSTR ini, ULONG_PTR flags)
*/
DWORD WINAPI InstallPerfDllW(LPCWSTR computer, LPCWSTR ini, ULONG_PTR flags)
{
FIXME("(%s, %s, %lx)\n", debugstr_w(computer), debugstr_w(ini), flags);
FIXME("(%s, %s, %Ix)\n", debugstr_w(computer), debugstr_w(ini), flags);
return ERROR_SUCCESS;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment