mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 04:14:10 +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 * tmpPath;
|
||||||
TCHAR szCurrent[MAX_PATH];
|
TCHAR szCurrent[MAX_PATH];
|
||||||
TCHAR szMsg[RC_STRING_MAX_SIZE];
|
TCHAR szMsg[RC_STRING_MAX_SIZE];
|
||||||
UINT i;
|
INT i;
|
||||||
|
|
||||||
|
|
||||||
/* Filter out special cases first */
|
/* Filter out special cases first */
|
||||||
|
@ -329,7 +329,7 @@ INT cmd_chdir (LPTSTR cmd, LPTSTR param)
|
||||||
|
|
||||||
/* Remove " */
|
/* Remove " */
|
||||||
i = 0;
|
i = 0;
|
||||||
while(i < _tcslen(szPath))
|
while(i < (INT)_tcslen(szPath))
|
||||||
{
|
{
|
||||||
if(szPath[i] == _T('\"'))
|
if(szPath[i] == _T('\"'))
|
||||||
memmove(&szPath[i],&szPath[i + 1], _tcslen(&szPath[i]) * sizeof(TCHAR));
|
memmove(&szPath[i],&szPath[i + 1], _tcslen(&szPath[i]) * sizeof(TCHAR));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue