mirror of
https://github.com/reactos/reactos.git
synced 2024-12-31 19:42:51 +00:00
[ACGENRAL] Fix MSVC warning C4090 "different 'const' qualifiers" about a ShimLib_ShimFree() call (#1506)
Addendum to 007cc5cd
.
CORE-7538
This commit is contained in:
parent
24647a270e
commit
a57bc4f6c3
1 changed files with 1 additions and 1 deletions
|
@ -122,7 +122,7 @@ fail:
|
||||||
|
|
||||||
--n;
|
--n;
|
||||||
}
|
}
|
||||||
ShimLib_ShimFree(names);
|
ShimLib_ShimFree((PVOID)names);
|
||||||
}
|
}
|
||||||
|
|
||||||
BOOL WINAPI SHIM_OBJ_NAME(Notify)(DWORD fdwReason, PVOID ptr)
|
BOOL WINAPI SHIM_OBJ_NAME(Notify)(DWORD fdwReason, PVOID ptr)
|
||||||
|
|
Loading…
Reference in a new issue