mirror of
https://github.com/reactos/reactos.git
synced 2025-05-07 10:46:58 +00:00
[FREELDR] Fix x64 compilation warning (addendum to commit d887308b
).
This commit is contained in:
parent
7c734db034
commit
d45b268127
1 changed files with 3 additions and 1 deletions
|
@ -119,7 +119,9 @@ NtLdrGetOptionEx(
|
||||||
IN PCSTR OptionName,
|
IN PCSTR OptionName,
|
||||||
OUT PULONG OptionLength OPTIONAL)
|
OUT PULONG OptionLength OPTIONAL)
|
||||||
{
|
{
|
||||||
return NtLdrGetOptionExN(Options, OptionName, strlen(OptionName), OptionLength);
|
return NtLdrGetOptionExN(Options, OptionName,
|
||||||
|
(ULONG)strlen(OptionName),
|
||||||
|
OptionLength);
|
||||||
}
|
}
|
||||||
|
|
||||||
PCSTR
|
PCSTR
|
||||||
|
|
Loading…
Reference in a new issue