mirror of
https://github.com/reactos/reactos.git
synced 2024-12-25 16:50:57 +00:00
Minor fixes.
svn path=/trunk/; revision=670
This commit is contained in:
parent
ee3dc0f0c1
commit
52498a577a
1 changed files with 2 additions and 5 deletions
|
@ -29,10 +29,7 @@ VOID ConOutPuts (LPTSTR szText)
|
|||
DWORD dwWritten;
|
||||
|
||||
WriteFile (GetStdHandle (STD_OUTPUT_HANDLE), szText, _tcslen(szText), &dwWritten, NULL);
|
||||
#if 0
|
||||
WriteFile (GetStdHandle (STD_OUTPUT_HANDLE), "\x0a\x0d", 2, &dwWritten, NULL);
|
||||
#endif
|
||||
WriteFile (GetStdHandle (STD_OUTPUT_HANDLE), "\n", 1, &dwWritten, NULL);
|
||||
WriteFile (GetStdHandle (STD_OUTPUT_HANDLE), _T("\n"), 1, &dwWritten, NULL);
|
||||
}
|
||||
|
||||
|
||||
|
@ -61,7 +58,7 @@ VOID error_sfile_not_found (LPTSTR f)
|
|||
|
||||
VOID ConErrPuts (LPTSTR szText)
|
||||
{
|
||||
ConErrPrintf("%s\n",szText );
|
||||
ConErrPrintf(_T("%s\n"),szText );
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue