summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2002-03-19 14:36:41 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-19 14:36:41 +0000
commit1aab597d6defed0a1b6ebe4a981a3cb105524800 (patch)
tree5624cb9c90ebce1f02e4188b9f8e35300d621665 /ext
parent8f118dcd647d91040f14fd1a562bdd89ac99859a (diff)
downloadperl-1aab597d6defed0a1b6ebe4a981a3cb105524800.tar.gz
constness+signedness nit.
p4raw-id: //depot/perl@15319
Diffstat (limited to 'ext')
-rw-r--r--ext/Unicode/Normalize/Normalize.xs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/Unicode/Normalize/Normalize.xs b/ext/Unicode/Normalize/Normalize.xs
index 59da98e3f0..3cb221fd75 100644
--- a/ext/Unicode/Normalize/Normalize.xs
+++ b/ext/Unicode/Normalize/Normalize.xs
@@ -226,7 +226,7 @@ reorder(arg)
dstlen = srclen + 1;
dst = newSV(dstlen);
- sv_setpvn(dst,s,srclen);
+ sv_setpvn(dst,(const char*)s,srclen);
SvUTF8_on(dst);
stk_cc_max = 10; /* enough as an initial value? */