Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mRemoteNG/PuTTYNG.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'charset/xenc.c')
-rw-r--r--charset/xenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/charset/xenc.c b/charset/xenc.c
index 964ca6ff..24592ad1 100644
--- a/charset/xenc.c
+++ b/charset/xenc.c
@@ -82,7 +82,7 @@ int charset_from_xenc(const char *name)
p = name;
q = xencs[i].name;
while (*p || *q) {
- if (tolower((unsigned char)*p) != tolower((unsigned char)*q))
+ if (tolower((unsigned char)*p) != tolower((unsigned char)*q))
break;
p++; q++;
}