From 562836fa81f539fbcad607eee034456aa4acccdc Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Thu, 12 Jul 2001 11:59:51 +0000 Subject: [PATCH] Fixed a warning. svn path=/trunk/; revision=2054 --- rosapps/cmd/internal.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rosapps/cmd/internal.c b/rosapps/cmd/internal.c index b5994789701..fd3629ee1a3 100644 --- a/rosapps/cmd/internal.c +++ b/rosapps/cmd/internal.c @@ -187,7 +187,7 @@ INT cmd_chdir (LPTSTR cmd, LPTSTR param) dir=param; endofstring=dir+_tcslen(dir); - while (lastquote = _tcsrchr(dir,'\"')) + while ((lastquote = _tcsrchr(dir,'\"'))) { endofstring--; memmove(lastquote,lastquote+1,endofstring-lastquote);