Forget change two line in chcp so it did not compile

svn path=/trunk/; revision=15078
This commit is contained in:
Magnus Olsen 2005-05-07 12:04:59 +00:00
parent a418e5094f
commit e18192ed67

View file

@ -41,7 +41,7 @@ INT CommandChcp (LPTSTR cmd, LPTSTR param)
{
/* display active code page number */
LoadString(GetModuleHandle(NULL), STRING_CHCP_ERROR1, szMsg, RC_STRING_MAX_SIZE);
ConErrPrintf(szMsg, GetCodePage);
ConErrPrintf(szMsg, InputCodePage);
return 0;
}
@ -55,7 +55,7 @@ INT CommandChcp (LPTSTR cmd, LPTSTR param)
/* save old code page */
uOldCodePage = GetCodePage;
uOldCodePage = InputCodePage;
uNewCodePage = (UINT)_ttoi(arg[0]);