[ros-diffs] [royce] 17822: fix breakage - sorry
royce at svn.reactos.com
royce at svn.reactos.com
Mon Sep 12 21:58:49 CEST 2005
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));
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://www.reactos.org/pipermail/ros-diffs/attachments/20050912/e15ac2d6/attachment.html
More information about the Ros-diffs
mailing list