summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cyr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cyr.c b/cyr.c
index a7e0abe..24921ff 100644
--- a/cyr.c
+++ b/cyr.c
@@ -118,14 +118,14 @@ int lookup_multi3 (wchar_t *str, int pos)
{
if ((str[pos] == 's') && (str[pos+1] == 'c') && (str[pos+2] == 'h'))
{
- wprintf(L"ж");
+ wprintf(L"ш");
return 2;
}
if ((str[pos] == 'S') && ((str[pos+1] == 'C') || (str[pos+1] == 'c')) &&
((str[pos+2] == 'H') || (str[pos+2] == 'h')))
{
- wprintf(L"Ж");
+ wprintf(L"Ш");
return 2;
}
return 0;