fix breakage - sorry
Modified: trunk/reactos/subsys/system/cmd/internal.c
_____
Modified: trunk/reactos/subsys/system/cmd/internal.c
--- trunk/reactos/subsys/system/cmd/internal.c 2005-09-12 19:50:16 UTC
(rev 17821)
+++ trunk/reactos/subsys/system/cmd/internal.c 2005-09-12 19:58:34 UTC
(rev 17822)
@@ -276,7 +276,7 @@
TCHAR * tmpPath;
TCHAR szCurrent[MAX_PATH];
TCHAR szMsg[RC_STRING_MAX_SIZE];
- UINT i;
+ INT i;
/* Filter out special cases first */
@@ -329,7 +329,7 @@
/* Remove " */
i = 0;
- while(i < _tcslen(szPath))
+ while(i < (INT)_tcslen(szPath))
{
if(szPath[i] == _T('\"'))
memmove(&szPath[i],&szPath[i + 1],
_tcslen(&szPath[i]) * sizeof(TCHAR));
Show replies by date