mirror of
https://github.com/reactos/reactos.git
synced 2025-05-06 10:28:45 +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,
|
||||
OUT PULONG OptionLength OPTIONAL)
|
||||
{
|
||||
return NtLdrGetOptionExN(Options, OptionName, strlen(OptionName), OptionLength);
|
||||
return NtLdrGetOptionExN(Options, OptionName,
|
||||
(ULONG)strlen(OptionName),
|
||||
OptionLength);
|
||||
}
|
||||
|
||||
PCSTR
|
||||
|
|
Loading…
Reference in a new issue