mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
fix breakage - sorry
svn path=/trunk/; revision=17822
This commit is contained in:
parent
831020dc3d
commit
6ad405d90f
1 changed files with 2 additions and 2 deletions
|
@ -276,7 +276,7 @@ INT cmd_chdir (LPTSTR cmd, LPTSTR param)
|
|||
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 @@ INT cmd_chdir (LPTSTR cmd, LPTSTR param)
|
|||
|
||||
/* 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));
|
||||
|
|
Loading…
Reference in a new issue