mirror of
https://github.com/reactos/reactos.git
synced 2024-11-05 22:26:39 +00:00
Fix typo (UNICODE -> _UNICODE)
svn path=/trunk/; revision=22897
This commit is contained in:
parent
49ac5c3e0e
commit
51cb8f8eac
1 changed files with 3 additions and 3 deletions
|
@ -182,7 +182,7 @@ VOID ConPuts(LPTSTR szText, DWORD nStdHandle)
|
||||||
1,
|
1,
|
||||||
&dwWritten,
|
&dwWritten,
|
||||||
NULL);
|
NULL);
|
||||||
#ifdef UNICODE
|
#ifdef _UNICODE
|
||||||
free(pBuf);
|
free(pBuf);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -230,7 +230,7 @@ VOID ConPrintf(LPTSTR szFormat, va_list arg_ptr, DWORD nStdHandle)
|
||||||
NULL);
|
NULL);
|
||||||
|
|
||||||
|
|
||||||
#ifdef UNICODE
|
#ifdef _UNICODE
|
||||||
free(pBuf);
|
free(pBuf);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -330,7 +330,7 @@ INT ConPrintfPaging(BOOL NewPage, LPTSTR szFormat, va_list arg_ptr, DWORD nStdHa
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef UNICODE
|
#ifdef _UNICODE
|
||||||
free(pBuf);
|
free(pBuf);
|
||||||
#endif
|
#endif
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue