[NDK][RTL] Make the Name argument in RtlQueryEnvironmentVariable_U const.

svn path=/trunk/; revision=74534
This commit is contained in:
Mark Jansen 2017-05-13 17:26:59 +00:00
parent e4832e1f99
commit b4e46f9021
2 changed files with 2 additions and 2 deletions

View file

@ -2967,7 +2967,7 @@ NTSTATUS
NTAPI
RtlQueryEnvironmentVariable_U(
_In_opt_ PWSTR Environment,
_In_ PUNICODE_STRING Name,
_In_ PCUNICODE_STRING Name,
_Out_ PUNICODE_STRING Value
);

View file

@ -508,7 +508,7 @@ found:
*/
NTSTATUS NTAPI
RtlQueryEnvironmentVariable_U(PWSTR Environment,
PUNICODE_STRING Name,
PCUNICODE_STRING Name,
PUNICODE_STRING Value)
{
NTSTATUS Status;