--- trunk/reactos/subsys/system/cmd/chcp.c 2005-05-07 11:54:22 UTC (rev 15077)
+++ trunk/reactos/subsys/system/cmd/chcp.c 2005-05-07 12:04:59 UTC (rev 15078)
@@ -41,7 +41,7 @@
{
/* 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 @@
/* save old code page */
- uOldCodePage = GetCodePage;
+ uOldCodePage = InputCodePage;
uNewCodePage = (UINT)_ttoi(arg[0]);