Commit ecdc4dac authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

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

parent e3d7f4d6
...@@ -2511,7 +2511,7 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) { ...@@ -2511,7 +2511,7 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) {
heap_free(dirsToWalk->dirName); heap_free(dirsToWalk->dirName);
heap_free(dirsToWalk); heap_free(dirsToWalk);
dirsToWalk = nextDir; 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)); wine_dbgstr_w(dirsToWalk->dirName));
else WINE_TRACE("Finished all directories.\n"); else WINE_TRACE("Finished all directories.\n");
} }
......
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
/* msdn specified max for Win XP */ /* msdn specified max for Win XP */
#define MAXSTRING 8192 #define MAXSTRING 8192
/* Data structure to hold commands delimitors/separators */ /* Data structure to hold commands delimiters/separators */
typedef enum _CMDdelimiters { typedef enum _CMDdelimiters {
CMD_NONE, /* End of line or single & */ CMD_NONE, /* End of line or single & */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment