From d25cb331be3d97b24e3ce188f853c478c1f19c73 Mon Sep 17 00:00:00 2001 From: Royce Mitchell III Date: Wed, 21 Sep 2005 01:27:54 +0000 Subject: [PATCH] msvc6 warning fix svn path=/trunk/; revision=17959 --- reactos/subsys/system/cmd/dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/subsys/system/cmd/dir.c b/reactos/subsys/system/cmd/dir.c index e7ef5001704..a33314669bd 100644 --- a/reactos/subsys/system/cmd/dir.c +++ b/reactos/subsys/system/cmd/dir.c @@ -240,7 +240,7 @@ DirReadParam(LPTSTR Line, /* [IN] The line with the parameters & switches */ BOOL bPNegative; /* Negative switch parameter */ BOOL bIntoQuotes; /* A flag showing if we are in quotes (") */ LPTSTR ptrLast; /* A pointer to the last character of param */ - INT t = 0; + UINT t = 0; /* Initialize variables; */