mirror of
https://github.com/reactos/reactos.git
synced 2025-04-21 12:40:33 +00:00
Forget change two line in chcp so it did not compile
svn path=/trunk/; revision=15078
This commit is contained in:
parent
a418e5094f
commit
e18192ed67
1 changed files with 2 additions and 2 deletions
|
@ -41,7 +41,7 @@ INT CommandChcp (LPTSTR cmd, LPTSTR param)
|
||||||
{
|
{
|
||||||
/* display active code page number */
|
/* display active code page number */
|
||||||
LoadString(GetModuleHandle(NULL), STRING_CHCP_ERROR1, szMsg, RC_STRING_MAX_SIZE);
|
LoadString(GetModuleHandle(NULL), STRING_CHCP_ERROR1, szMsg, RC_STRING_MAX_SIZE);
|
||||||
ConErrPrintf(szMsg, GetCodePage);
|
ConErrPrintf(szMsg, InputCodePage);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -55,7 +55,7 @@ INT CommandChcp (LPTSTR cmd, LPTSTR param)
|
||||||
|
|
||||||
|
|
||||||
/* save old code page */
|
/* save old code page */
|
||||||
uOldCodePage = GetCodePage;
|
uOldCodePage = InputCodePage;
|
||||||
|
|
||||||
uNewCodePage = (UINT)_ttoi(arg[0]);
|
uNewCodePage = (UINT)_ttoi(arg[0]);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue