libextractor

GNU libextractor
Log | Files | Refs | Submodules | README | LICENSE

commit ee001b0e69f7380cc12038f7cfdb6359959a2680
parent 5fdc452e7d44a7647b5cc1667df3078d53b0546e
Author: Christian Grothoff <christian@grothoff.org>
Date:   Sat, 12 Jun 2010 15:29:02 +0000

oops

Diffstat:
Msrc/common/unzip.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/common/unzip.c b/src/common/unzip.c @@ -248,8 +248,8 @@ strcmpcasenosensitive_internal (const char* fileName1, { while (1) { - const char c1=*(fileName1++); - const char c2=*(fileName2++); + char c1=*(fileName1++); + char c2=*(fileName2++); if ((c1>='a') && (c1<='z')) c1 -= 0x20; if ((c2>='a') && (c2<='z'))