projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
b91bb19
)
Signedness nit.
Jarkko Hietaniemi [Sat, 30 Dec 2000 20:24:56 +0000 (20:24 +0000)]
p4raw-id: //depot/perl@8274
utf8.c
patch
|
blob
|
blame
|
history
diff --git
a/utf8.c
b/utf8.c
index
f65c94f
..
99cb8b9
100644
(file)
--- a/
utf8.c
+++ b/
utf8.c
@@
-167,7
+167,7
@@
Perl_is_utf8_string(pTHX_ U8 *s, STRLEN len)
STRLEN c;
if (!len)
- len = strlen(s);
+ len = strlen((char *)s);
send = s + len;
while (x < send) {