From d40eb536e9140b9bd0f9c26ce699a22ebb8d450b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sun, 30 Jun 2013 13:23:30 +0000 Subject: [PATCH] [CMD] Fix some people's names presentation svn path=/trunk/; revision=59390 --- reactos/base/shell/cmd/alias.c | 4 ++-- reactos/base/shell/cmd/attrib.c | 2 +- reactos/base/shell/cmd/batch.c | 20 ++++++++++---------- reactos/base/shell/cmd/batch.h | 2 +- reactos/base/shell/cmd/beep.c | 2 +- reactos/base/shell/cmd/call.c | 2 +- reactos/base/shell/cmd/chcp.c | 2 +- reactos/base/shell/cmd/cls.c | 2 +- reactos/base/shell/cmd/color.c | 2 +- reactos/base/shell/cmd/console.c | 6 +++--- reactos/base/shell/cmd/copy.c | 6 +++--- reactos/base/shell/cmd/date.c | 2 +- reactos/base/shell/cmd/echo.c | 2 +- reactos/base/shell/cmd/error.c | 2 +- reactos/base/shell/cmd/for.c | 2 +- reactos/base/shell/cmd/free.c | 2 +- reactos/base/shell/cmd/goto.c | 2 +- reactos/base/shell/cmd/label.c | 2 +- reactos/base/shell/cmd/memory.c | 2 +- reactos/base/shell/cmd/misc.c | 2 +- reactos/base/shell/cmd/move.c | 6 +++--- reactos/base/shell/cmd/msgbox.c | 2 +- reactos/base/shell/cmd/parser.c | 2 +- reactos/base/shell/cmd/path.c | 2 +- reactos/base/shell/cmd/prompt.c | 2 +- reactos/base/shell/cmd/ren.c | 5 +++-- reactos/base/shell/cmd/screen.c | 2 +- reactos/base/shell/cmd/set.c | 2 +- reactos/base/shell/cmd/setlocal.c | 2 +- reactos/base/shell/cmd/shift.c | 2 +- reactos/base/shell/cmd/start.c | 2 +- reactos/base/shell/cmd/time.c | 2 +- reactos/base/shell/cmd/title.c | 2 +- reactos/base/shell/cmd/type.c | 2 +- reactos/base/shell/cmd/verify.c | 2 +- reactos/base/shell/cmd/window.c | 2 +- 36 files changed, 54 insertions(+), 53 deletions(-) diff --git a/reactos/base/shell/cmd/alias.c b/reactos/base/shell/cmd/alias.c index 4cfa01944e0..4c71d378bec 100644 --- a/reactos/base/shell/cmd/alias.c +++ b/reactos/base/shell/cmd/alias.c @@ -25,10 +25,10 @@ * 24-Jan-1998 Eric Kohl * Redirection safe! * - * 02-Apr-2005 (Magnus Olsen) + * 02-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc * - * 02-Feb-2008 (Christoph von Wittich) ) + * 02-Feb-2008 (Christoph von Wittich ) * rewrote alias handling for doskey compat */ diff --git a/reactos/base/shell/cmd/attrib.c b/reactos/base/shell/cmd/attrib.c index 13c9e9e8274..5e26f0a5ec5 100644 --- a/reactos/base/shell/cmd/attrib.c +++ b/reactos/base/shell/cmd/attrib.c @@ -28,7 +28,7 @@ * 23-Jan-1999 Eric Kohl * Added handling of multiple filenames. * - * 02-Apr-2005 (Magnus Olsen) + * 02-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/batch.c b/reactos/base/shell/cmd/batch.c index e8117629cc8..e2f7d360c57 100644 --- a/reactos/base/shell/cmd/batch.c +++ b/reactos/base/shell/cmd/batch.c @@ -212,15 +212,15 @@ void BatchFile2Mem(HANDLE hBatchFile) bc->mem = (char *)cmd_alloc(bc->memsize+1); /* 1 extra for '\0' */ /* if memory is available, read it in and close the file */ - if (bc->mem != NULL) + if (bc->mem != NULL) { TRACE ("BatchFile2Mem memory %08x - %08x\n",bc->mem,bc->memsize); SetFilePointer (hBatchFile, 0, NULL, FILE_BEGIN); ReadFile(hBatchFile, (LPVOID)bc->mem, bc->memsize, &bc->memsize, NULL); bc->mem[bc->memsize]='\0'; /* end this, so you can dump it as a string */ bc->memfree=TRUE; /* this one needs to be freed */ - } - else + } + else { bc->memsize=0; /* this will prevent mem being accessed */ bc->memfree=FALSE; @@ -244,11 +244,11 @@ INT Batch (LPTSTR fullname, LPTSTR firstword, LPTSTR param, PARSED_COMMAND *Cmd) HANDLE hFile = 0; SetLastError(0); - if (bc && bc->mem) + if (bc && bc->mem) { TCHAR fpname[MAX_PATH]; GetFullPathName(fullname, sizeof(fpname) / sizeof(TCHAR), fpname, NULL); - if (_tcsicmp(bc->BatchFilePath,fpname)==0) + if (_tcsicmp(bc->BatchFilePath,fpname)==0) same_fn=TRUE; } TRACE ("Batch: (\'%s\', \'%s\', \'%s\') same_fn = %d\n", @@ -312,7 +312,7 @@ INT Batch (LPTSTR fullname, LPTSTR firstword, LPTSTR param, PARSED_COMMAND *Cmd) GetFullPathName(fullname, sizeof(bc->BatchFilePath) / sizeof(TCHAR), bc->BatchFilePath, NULL); /* if a new batch file, load it into memory and close the file */ - if (!same_fn) + if (!same_fn) { BatchFile2Mem(hFile); CloseHandle(hFile); @@ -402,12 +402,12 @@ BOOL BatchGetString (LPTSTR lpBuffer, INT nBufferLength) lpString = lpBuffer; #endif /* read all chars from memory until a '\n' is encountered */ - if (bc->mem) + if (bc->mem) { - for (; (bc->mempos < bc->memsize && len < (nBufferLength-1)); len++) - { + for (; (bc->mempos < bc->memsize && len < (nBufferLength-1)); len++) + { lpString[len] = bc->mem[bc->mempos++]; - if (lpString[len] == '\n' ) + if (lpString[len] == '\n' ) { len++; break; diff --git a/reactos/base/shell/cmd/batch.h b/reactos/base/shell/cmd/batch.h index afa37460fbf..53d1903f4d4 100644 --- a/reactos/base/shell/cmd/batch.h +++ b/reactos/base/shell/cmd/batch.h @@ -17,7 +17,7 @@ typedef struct tagBATCHCONTEXT INT shiftlevel[10]; BOOL bEcho; /* Preserve echo flag across batch calls */ REDIRECTION *RedirList; - PARSED_COMMAND *current; + PARSED_COMMAND *current; struct _SETLOCAL *setlocal; } BATCH_CONTEXT, *LPBATCH_CONTEXT; diff --git a/reactos/base/shell/cmd/beep.c b/reactos/base/shell/cmd/beep.c index a5d82a3c722..2506be1c221 100644 --- a/reactos/base/shell/cmd/beep.c +++ b/reactos/base/shell/cmd/beep.c @@ -20,7 +20,7 @@ * 20-Jan-1999 (Eric Kohl) * Redirection ready! * - * 02-Apr-2005 (Magnus Olsen) + * 02-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/call.c b/reactos/base/shell/cmd/call.c index 70f3505a78e..5eb9639ef12 100644 --- a/reactos/base/shell/cmd/call.c +++ b/reactos/base/shell/cmd/call.c @@ -24,7 +24,7 @@ * 20-Jan-1999 (Eric Kohl) * Unicode and redirection safe! * - * 02-Apr-2005 (Magnus Olsen) + * 02-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/chcp.c b/reactos/base/shell/cmd/chcp.c index 4ef1933af4b..3db6d369ad4 100644 --- a/reactos/base/shell/cmd/chcp.c +++ b/reactos/base/shell/cmd/chcp.c @@ -7,7 +7,7 @@ * 23-Dec-1998 (Eric Kohl) * Started. * - * 02-Apr-2005 (Magnus Olsen) + * 02-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/cls.c b/reactos/base/shell/cmd/cls.c index db23aef64f9..5cf6aa02bb0 100644 --- a/reactos/base/shell/cmd/cls.c +++ b/reactos/base/shell/cmd/cls.c @@ -22,7 +22,7 @@ * 20-Jan-1998 (Eric Kohl) * Redirection ready! * - * 02-Apr-2005 (Magnus Olsen) + * 02-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/color.c b/reactos/base/shell/cmd/color.c index ba03bda5097..cce61831aa7 100644 --- a/reactos/base/shell/cmd/color.c +++ b/reactos/base/shell/cmd/color.c @@ -16,7 +16,7 @@ * 14-Oct-1999 (Paolo Pantaleo ) * 4nt's syntax implemented. * - * 03-Apr-2005 (Magnus Olsen) + * 03-Apr-2005 (Magnus Olsen ) * Move all hardcoded strings in En.rc. */ diff --git a/reactos/base/shell/cmd/console.c b/reactos/base/shell/cmd/console.c index 00eb8263e96..1cc950d48ee 100644 --- a/reactos/base/shell/cmd/console.c +++ b/reactos/base/shell/cmd/console.c @@ -7,13 +7,13 @@ * 20-Jan-1999 (Eric Kohl) * started * - * 03-Apr-2005 (Magnus Olsen) + * 03-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc * - * 01-Jul-2005 (Brandon Turner) + * 01-Jul-2005 (Brandon Turner ) * Added ConPrintfPaging and ConOutPrintfPaging * - * 02-Feb-2007 (Paolo Devoti) + * 02-Feb-2007 (Paolo Devoti ) * Fixed ConPrintfPaging */ diff --git a/reactos/base/shell/cmd/copy.c b/reactos/base/shell/cmd/copy.c index 95fdb78007d..307fc954e97 100644 --- a/reactos/base/shell/cmd/copy.c +++ b/reactos/base/shell/cmd/copy.c @@ -20,13 +20,13 @@ * 27-Oct-1998 (Eric Kohl) * Disabled prompting when used in batch mode. * - * 03-Apr-2005 (Magnus Olsen) ) + * 03-Apr-2005 (Magnus Olsen ) * Remove all hardcode string to En.rc * - * 13-Jul-2005 (Brandon Turner) ) + * 13-Jul-2005 (Brandon Turner ) * Rewrite to clean up copy and support wildcard. * - * 20-Jul-2005 (Brandon Turner) ) + * 20-Jul-2005 (Brandon Turner ) * Add touch syntax. "copy arp.exe+,," * Copy command is now completed. */ diff --git a/reactos/base/shell/cmd/date.c b/reactos/base/shell/cmd/date.c index 494da0b74c3..7704cde50a7 100644 --- a/reactos/base/shell/cmd/date.c +++ b/reactos/base/shell/cmd/date.c @@ -27,7 +27,7 @@ * 04-Feb-1999 (Eric Kohl) * Fixed date input bug. * - * 03-Apr-2005 (Magnus Olsen) + * 03-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/echo.c b/reactos/base/shell/cmd/echo.c index 0c9ba7fd3c0..272ca46bdf2 100644 --- a/reactos/base/shell/cmd/echo.c +++ b/reactos/base/shell/cmd/echo.c @@ -22,7 +22,7 @@ * 13-Jul-2000 (Eric Kohl) * Implemented 'echo.' and 'echoerr.'. * - * 28-Apr-2005 (Magnus Olsen) + * 28-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/error.c b/reactos/base/shell/cmd/error.c index f392d8a8a59..6709f765275 100644 --- a/reactos/base/shell/cmd/error.c +++ b/reactos/base/shell/cmd/error.c @@ -16,7 +16,7 @@ * 02-Feb-1999 (Eric Kohl) * Use FormatMessage() for error reports. * - * 28-Apr-2005 (Magnus Olsen) + * 28-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/for.c b/reactos/base/shell/cmd/for.c index bc903765d2f..44540030280 100644 --- a/reactos/base/shell/cmd/for.c +++ b/reactos/base/shell/cmd/for.c @@ -26,7 +26,7 @@ * Implemented preservation of echo flag. Some other for related * code in other files fixed, too. * - * 28-Apr-2005 (Magnus Olsen) + * 28-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/free.c b/reactos/base/shell/cmd/free.c index 344e877df69..ef6857278e0 100644 --- a/reactos/base/shell/cmd/free.c +++ b/reactos/base/shell/cmd/free.c @@ -7,7 +7,7 @@ * 01-Sep-1999 (Eric Kohl) * Started. * - * 28-Apr-2005 (Magnus Olsen) + * 28-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/goto.c b/reactos/base/shell/cmd/goto.c index 9ee36bf3829..99a04cb081e 100644 --- a/reactos/base/shell/cmd/goto.c +++ b/reactos/base/shell/cmd/goto.c @@ -22,7 +22,7 @@ * 27-Jan-1999 (Eric Kohl) * Added help text ("/?"). * - * 28-Apr-2005 (Magnus Olsen) + * 28-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/label.c b/reactos/base/shell/cmd/label.c index 4bbec9a8874..a42ac3b2d37 100644 --- a/reactos/base/shell/cmd/label.c +++ b/reactos/base/shell/cmd/label.c @@ -13,7 +13,7 @@ * 19-Jan-1998 (Eric Kohl) * Unicode ready! * - * 28-Apr-2005 (Magnus Olsen) + * 28-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/memory.c b/reactos/base/shell/cmd/memory.c index 9c317f02f72..fc1b7a3921a 100644 --- a/reactos/base/shell/cmd/memory.c +++ b/reactos/base/shell/cmd/memory.c @@ -7,7 +7,7 @@ * 01-Sep-1999 (Eric Kohl) * Started. * - * 28-Apr-2005 (Magnus Olsen) + * 28-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/misc.c b/reactos/base/shell/cmd/misc.c index 48f505ca081..6c1a177f048 100644 --- a/reactos/base/shell/cmd/misc.c +++ b/reactos/base/shell/cmd/misc.c @@ -28,7 +28,7 @@ * 06-Nov-1999 (Eric Kohl) * Added PagePrompt() and FilePrompt(). * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/move.c b/reactos/base/shell/cmd/move.c index 78635712360..428a3c21748 100644 --- a/reactos/base/shell/cmd/move.c +++ b/reactos/base/shell/cmd/move.c @@ -21,10 +21,10 @@ * 03-Feb-1999 (Eric Kohl) * Added "/N" option. * -* 30-Apr-2005 (Magnus Olsen) ) -* Remove all hardcode string to En.rc +* 30-Apr-2005 (Magnus Olsen ) +* Remove all hardcoded strings in En.rc * -* 24-Jun-2005 (Brandon Turner) ) +* 24-Jun-2005 (Brandon Turner ) * Fixed bug to allow MS style wildcards + code clean up * added /y and /-y */ diff --git a/reactos/base/shell/cmd/msgbox.c b/reactos/base/shell/cmd/msgbox.c index 29bf5c2773d..2e790ad7855 100644 --- a/reactos/base/shell/cmd/msgbox.c +++ b/reactos/base/shell/cmd/msgbox.c @@ -6,7 +6,7 @@ * 25 Aug 1999 * started - Paolo Pantaleo * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/parser.c b/reactos/base/shell/cmd/parser.c index 93a4b48faca..426c1ab11a7 100644 --- a/reactos/base/shell/cmd/parser.c +++ b/reactos/base/shell/cmd/parser.c @@ -123,7 +123,7 @@ static int ParseToken(TCHAR ExtraEnd, TCHAR *Separators) break; } } - + /* Check for numbered redirection */ if ((Char >= _T('0') && Char <= _T('9') && (ParsePos == &ParseLine[1] || IsSeparator(ParsePos[-2])) diff --git a/reactos/base/shell/cmd/path.c b/reactos/base/shell/cmd/path.c index a5a67eec683..c0c4819e397 100644 --- a/reactos/base/shell/cmd/path.c +++ b/reactos/base/shell/cmd/path.c @@ -22,7 +22,7 @@ * 24-Jan-1999 (Eric Kohl) * Fixed Win32 environment handling. * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ #include "precomp.h" diff --git a/reactos/base/shell/cmd/prompt.c b/reactos/base/shell/cmd/prompt.c index 35e552f7e7e..8081319254d 100644 --- a/reactos/base/shell/cmd/prompt.c +++ b/reactos/base/shell/cmd/prompt.c @@ -43,7 +43,7 @@ * 24-Jan-1999 (Eric Kohl) * Fixed Win32 environment handling. * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ #include "precomp.h" diff --git a/reactos/base/shell/cmd/ren.c b/reactos/base/shell/cmd/ren.c index 7d9805b3c39..d23e02e6521 100644 --- a/reactos/base/shell/cmd/ren.c +++ b/reactos/base/shell/cmd/ren.c @@ -17,10 +17,11 @@ * 17-Oct-2001 (Eric Kohl) * Implemented basic rename code. * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc * - * 25-Nov-2008 (Victor Martinez) Patch dedicated to Myrjala because her comprenhension and love :D + * 25-Nov-2008 (Victor Martinez ) + * Patch dedicated to Myrjala because her comprenhension and love :D * Fixing following Bugs: * -Wrong behavior with wildcards when Source and Destiny are Paths(FIXED). * -Wrong general behavior (MSDN:"Rename cant move files between subdirectories")(FIXED) diff --git a/reactos/base/shell/cmd/screen.c b/reactos/base/shell/cmd/screen.c index df612cf5b0c..5b16fbd7aee 100644 --- a/reactos/base/shell/cmd/screen.c +++ b/reactos/base/shell/cmd/screen.c @@ -6,7 +6,7 @@ * 30 Aug 1999 * started - Paolo Pantaleo * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc * */ diff --git a/reactos/base/shell/cmd/set.c b/reactos/base/shell/cmd/set.c index 3a4f359d19d..a0cac1eb3e4 100644 --- a/reactos/base/shell/cmd/set.c +++ b/reactos/base/shell/cmd/set.c @@ -30,7 +30,7 @@ * 25-Feb-1999 (Eric Kohl) * Fixed little bug. * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/setlocal.c b/reactos/base/shell/cmd/setlocal.c index c7a806ead89..5ad2e417682 100644 --- a/reactos/base/shell/cmd/setlocal.c +++ b/reactos/base/shell/cmd/setlocal.c @@ -5,7 +5,7 @@ * * 1 Feb 2008 (Christoph von Wittich) * started. -*/ +*/ #include "precomp.h" diff --git a/reactos/base/shell/cmd/shift.c b/reactos/base/shell/cmd/shift.c index 160175fce3f..e3ce5b106d9 100644 --- a/reactos/base/shell/cmd/shift.c +++ b/reactos/base/shell/cmd/shift.c @@ -19,7 +19,7 @@ * 20-Jan-1999 (Eric Kohl) * Unicode and redirection safe! * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/start.c b/reactos/base/shell/cmd/start.c index 8fe13c55dc0..6fbbec5e035 100644 --- a/reactos/base/shell/cmd/start.c +++ b/reactos/base/shell/cmd/start.c @@ -7,7 +7,7 @@ * 24-Jul-1999 (Eric Kohl) * Started. * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/time.c b/reactos/base/shell/cmd/time.c index 70bd4e13935..9ce3cc26ce4 100644 --- a/reactos/base/shell/cmd/time.c +++ b/reactos/base/shell/cmd/time.c @@ -20,7 +20,7 @@ * 04-Feb-1999 (Eric Kohl) * Fixed time input bug. * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc. */ diff --git a/reactos/base/shell/cmd/title.c b/reactos/base/shell/cmd/title.c index 5ea1f3ceac1..1fa9179fe3e 100644 --- a/reactos/base/shell/cmd/title.c +++ b/reactos/base/shell/cmd/title.c @@ -5,7 +5,7 @@ * History: * 1999-02-11 Emanuele Aliberti * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/type.c b/reactos/base/shell/cmd/type.c index 2e10c52fb24..1e0f3e80d2f 100644 --- a/reactos/base/shell/cmd/type.c +++ b/reactos/base/shell/cmd/type.c @@ -22,7 +22,7 @@ * 19-Jan-1999 (Paolo Pantaleo ) * Added multiple file support (copied from y.c) * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/verify.c b/reactos/base/shell/cmd/verify.c index ad3d3d37c52..eabb03bdfe3 100644 --- a/reactos/base/shell/cmd/verify.c +++ b/reactos/base/shell/cmd/verify.c @@ -14,7 +14,7 @@ * 20-Jan-1999 (Eric Kohl) * Unicode and redirection ready! * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */ diff --git a/reactos/base/shell/cmd/window.c b/reactos/base/shell/cmd/window.c index f709472572c..c44918e704c 100644 --- a/reactos/base/shell/cmd/window.c +++ b/reactos/base/shell/cmd/window.c @@ -10,7 +10,7 @@ * activate and window in a single file using mainly the same code * (nice size optimization :) * - * 30-Apr-2005 (Magnus Olsen) + * 30-Apr-2005 (Magnus Olsen ) * Remove all hardcoded strings in En.rc */