Fix typo (UNICODE -> _UNICODE)

svn path=/trunk/; revision=22897
This commit is contained in:
Hervé Poussineau 2006-07-06 21:58:48 +00:00
parent 49ac5c3e0e
commit 51cb8f8eac

View file

@ -182,7 +182,7 @@ VOID ConPuts(LPTSTR szText, DWORD nStdHandle)
1,
&dwWritten,
NULL);
#ifdef UNICODE
#ifdef _UNICODE
free(pBuf);
#endif
}
@ -230,7 +230,7 @@ VOID ConPrintf(LPTSTR szFormat, va_list arg_ptr, DWORD nStdHandle)
NULL);
#ifdef UNICODE
#ifdef _UNICODE
free(pBuf);
#endif
}
@ -330,7 +330,7 @@ INT ConPrintfPaging(BOOL NewPage, LPTSTR szFormat, va_list arg_ptr, DWORD nStdHa
}
#ifdef UNICODE
#ifdef _UNICODE
free(pBuf);
#endif
return 0;