mirror of
https://github.com/reactos/reactos.git
synced 2024-12-26 17:14:41 +00:00
Fixed a warning.
svn path=/trunk/; revision=2054
This commit is contained in:
parent
e9f2e019b1
commit
562836fa81
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ INT cmd_chdir (LPTSTR cmd, LPTSTR param)
|
||||||
dir=param;
|
dir=param;
|
||||||
endofstring=dir+_tcslen(dir);
|
endofstring=dir+_tcslen(dir);
|
||||||
|
|
||||||
while (lastquote = _tcsrchr(dir,'\"'))
|
while ((lastquote = _tcsrchr(dir,'\"')))
|
||||||
{
|
{
|
||||||
endofstring--;
|
endofstring--;
|
||||||
memmove(lastquote,lastquote+1,endofstring-lastquote);
|
memmove(lastquote,lastquote+1,endofstring-lastquote);
|
||||||
|
|
Loading…
Reference in a new issue