https://git.reactos.org/?p=reactos.git;a=commitdiff;h=e904471023214afbf66a0177700d95a670145c75

commit e904471023214afbf66a0177700d95a670145c75
Author:     Hermès Bélusca-Maïto <[email protected]>
AuthorDate: Sat Sep 19 20:57:35 2020 +0200
Commit:     Hermès Bélusca-Maïto <[email protected]>
CommitDate: Mon Sep 21 03:31:01 2020 +0200

    [CMD] IF: Fix x64 warning C4267.
---
 base/shell/cmd/if.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/base/shell/cmd/if.c b/base/shell/cmd/if.c
index e219a3db225..a8426e1367a 100644
--- a/base/shell/cmd/if.c
+++ b/base/shell/cmd/if.c
@@ -113,7 +113,7 @@ INT ExecuteIf(PARSED_COMMAND *Cmd)
     else if (Cmd->If.Operator == IF_EXIST)
     {
         BOOL IsDir;
-        INT Size;
+        SIZE_T Size;
         WIN32_FIND_DATA f;
         HANDLE hFind;
         DWORD attrs;

Reply via email to