summaryrefslogtreecommitdiff
path: root/utf8.c
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-12-03 14:08:59 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-12-03 14:08:59 +0000
commit726d7ae441a72088bad1d8a88f5e5a5f713513be (patch)
tree1b7cce426898d8151f05af90b1f37992163f5541 /utf8.c
parent37d85e3a91692e44e6e502b7d515335fd5f620d6 (diff)
downloadperl-726d7ae441a72088bad1d8a88f5e5a5f713513be.tar.gz
microperl casting nit.
p4raw-id: //depot/perl@13437
Diffstat (limited to 'utf8.c')
-rw-r--r--utf8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/utf8.c b/utf8.c
index 8711137feb..9aded5ae5f 100644
--- a/utf8.c
+++ b/utf8.c
@@ -1590,7 +1590,7 @@ Perl_ibcmp_utf8(pTHX_ const char *s1, bool u1, const char *s2, bool u2, register
ulen2 = 1;
if (ulen1 != ulen2
|| (ulen1 == 1 && PL_fold[ca] != PL_fold[cb])
- || memNE(tmpbuf1, tmpbuf2, ulen1))
+ || memNE((char *)tmpbuf1, (char *)tmpbuf2, ulen1))
return 1;
}
a += la;