mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[CMD] IF: Fix x64 warning C4267.
This commit is contained in:
parent
cb22d5f697
commit
e904471023
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ INT ExecuteIf(PARSED_COMMAND *Cmd)
|
||||||
else if (Cmd->If.Operator == IF_EXIST)
|
else if (Cmd->If.Operator == IF_EXIST)
|
||||||
{
|
{
|
||||||
BOOL IsDir;
|
BOOL IsDir;
|
||||||
INT Size;
|
SIZE_T Size;
|
||||||
WIN32_FIND_DATA f;
|
WIN32_FIND_DATA f;
|
||||||
HANDLE hFind;
|
HANDLE hFind;
|
||||||
DWORD attrs;
|
DWORD attrs;
|
||||||
|
|
Loading…
Reference in a new issue