mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 09:25:10 +00:00
Fix unicode / ansi build problem for -D_DEBUG build
a old bug in cmd. Bug report 629 in bugzila fix by tinus and his patch at bugzila svn path=/trunk/; revision=15390
This commit is contained in:
parent
a04f8e62fe
commit
baed69574e
1 changed files with 3 additions and 3 deletions
|
@ -1668,7 +1668,7 @@ TCHAR szMsg[RC_STRING_MAX_SIZE];
|
|||
if (ptrStartNode == NULL)
|
||||
{
|
||||
#ifdef _DEBUG
|
||||
ConErrPrintf("DEBUG: Cannot allocate memory for ptrStartNode!\n");
|
||||
ConErrPrintf(_T("DEBUG: Cannot allocate memory for ptrStartNode!\n"));
|
||||
#endif
|
||||
return 1; /* Error cannot allocate memory for 1st object */
|
||||
}
|
||||
|
@ -1688,7 +1688,7 @@ TCHAR szMsg[RC_STRING_MAX_SIZE];
|
|||
if (ptrNextNode->ptrNext == NULL)
|
||||
{
|
||||
#ifdef _DEBUG
|
||||
ConErrPrintf("DEBUG: Cannot allocate memory for ptrNextNode->ptrNext!\n");
|
||||
ConErrPrintf(_T("DEBUG: Cannot allocate memory for ptrNextNode->ptrNext!\n"));
|
||||
#endif
|
||||
while (ptrStartNode)
|
||||
{
|
||||
|
@ -1748,7 +1748,7 @@ TCHAR szMsg[RC_STRING_MAX_SIZE];
|
|||
if (ptrFileArray == NULL)
|
||||
{
|
||||
#ifdef _DEBUG
|
||||
ConErrPrintf("DEBUG: Cannot allocate memory for ptrFileArray!\n");
|
||||
ConErrPrintf(_T("DEBUG: Cannot allocate memory for ptrFileArray!\n"));
|
||||
#endif
|
||||
while (ptrStartNode)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue