mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 08:17:09 +08:00
[FREELDR] Fix x64 compilation warning (addendum to commit d887308b).
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user