diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-03 14:08:59 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-03 14:08:59 +0000 |
commit | 726d7ae441a72088bad1d8a88f5e5a5f713513be (patch) | |
tree | 1b7cce426898d8151f05af90b1f37992163f5541 /utf8.c | |
parent | 37d85e3a91692e44e6e502b7d515335fd5f620d6 (diff) | |
download | perl-726d7ae441a72088bad1d8a88f5e5a5f713513be.tar.gz |
microperl casting nit.
p4raw-id: //depot/perl@13437
Diffstat (limited to 'utf8.c')
-rw-r--r-- | utf8.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |