Commit 89a837c4 authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

aclui: Enable compilation with long types.

parent cc6384b0
EXTRADEFS = -DWINE_NO_LONG_TYPES
MODULE = aclui.dll
IMPORTLIB = aclui
IMPORTS = comctl32 user32 advapi32 gdi32
......
......@@ -238,7 +238,7 @@ static void init_users(struct security_page *page)
if (!GetSecurityDescriptorDacl(page->sd, &present, &dacl, &defaulted))
{
ERR("Failed to query descriptor information, error %u.\n", GetLastError());
ERR("Failed to query descriptor information, error %lu.\n", GetLastError());
return;
}
......@@ -339,14 +339,14 @@ static void security_page_init_dlg(HWND hwnd, struct security_page *page)
if (FAILED(hr = ISecurityInformation_GetSecurity(page->security,
DACL_SECURITY_INFORMATION, &page->sd, FALSE)))
{
ERR("Failed to get security descriptor, hr %#x.\n", hr);
ERR("Failed to get security descriptor, hr %#lx.\n", hr);
return;
}
if (FAILED(hr = ISecurityInformation_GetAccessRights(page->security,
NULL, 0, &page->access, &page->access_count, &def)))
{
ERR("Failed to get access mapping, hr %#x.\n", hr);
ERR("Failed to get access mapping, hr %#lx.\n", hr);
return;
}
......
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