Commit 30fde946 authored by Marko Nikolic's avatar Marko Nikolic Committed by Alexandre Julliard

advapi32: Removed sign comparison warning.

parent b76e2dae
...@@ -3600,7 +3600,7 @@ DWORD WINAPI SetEntriesInAclA( ULONG count, PEXPLICIT_ACCESSA pEntries, ...@@ -3600,7 +3600,7 @@ DWORD WINAPI SetEntriesInAclA( ULONG count, PEXPLICIT_ACCESSA pEntries,
{ {
DWORD err = ERROR_SUCCESS; DWORD err = ERROR_SUCCESS;
EXPLICIT_ACCESSW *pEntriesW; EXPLICIT_ACCESSW *pEntriesW;
int alloc_index, free_index; UINT alloc_index, free_index;
TRACE("%d %p %p %p\n", count, pEntries, OldAcl, NewAcl); TRACE("%d %p %p %p\n", count, pEntries, OldAcl, NewAcl);
......
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