Remove the wrong \0 character

svn path=/trunk/; revision=27723
This commit is contained in:
Colin Finck 2007-07-18 20:00:26 +00:00
parent 244d310147
commit d759e74461

View file

@ -768,7 +768,7 @@ INT CommandShowCommandsDetail (LPTSTR cmd, LPTSTR param)
{
LPTSTR NewCommand = malloc((_tcslen(param)+4)*sizeof(TCHAR));
_tcscpy(NewCommand, param);
_tcscat(NewCommand, _T(" /?\0"));
_tcscat(NewCommand, _T(" /?"));
DoCommand(NewCommand);
free(NewCommand);
}