aboutsummaryrefslogtreecommitdiff
path: root/src/common/unzip.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/unzip.c')
-rw-r--r--src/common/unzip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/unzip.c b/src/common/unzip.c
index 0b002e7..6d2315f 100644
--- a/src/common/unzip.c
+++ b/src/common/unzip.c
@@ -248,8 +248,8 @@ strcmpcasenosensitive_internal (const char* fileName1,
248{ 248{
249 while (1) 249 while (1)
250 { 250 {
251 const char c1=*(fileName1++); 251 char c1=*(fileName1++);
252 const char c2=*(fileName2++); 252 char c2=*(fileName2++);
253 if ((c1>='a') && (c1<='z')) 253 if ((c1>='a') && (c1<='z'))
254 c1 -= 0x20; 254 c1 -= 0x20;
255 if ((c2>='a') && (c2<='z')) 255 if ((c2>='a') && (c2<='z'))