cmd: Fix the spelling of a WINE_TRACE() message and a comment.

Signed-off-by: Francois Gouget <fgouget@free.fr>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Francois Gouget 2019-12-09 09:43:23 +01:00 committed by Alexandre Julliard
parent e3d7f4d619
commit ecdc4daccf
2 changed files with 2 additions and 2 deletions

View File

@ -2511,7 +2511,7 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) {
heap_free(dirsToWalk->dirName);
heap_free(dirsToWalk);
dirsToWalk = nextDir;
if (dirsToWalk) WINE_TRACE("Moving to next directorty to iterate: %s\n",
if (dirsToWalk) WINE_TRACE("Moving to next directory to iterate: %s\n",
wine_dbgstr_w(dirsToWalk->dirName));
else WINE_TRACE("Finished all directories.\n");
}

View File

@ -34,7 +34,7 @@
/* msdn specified max for Win XP */
#define MAXSTRING 8192
/* Data structure to hold commands delimitors/separators */
/* Data structure to hold commands delimiters/separators */
typedef enum _CMDdelimiters {
CMD_NONE, /* End of line or single & */