projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
51d941a
)
Avoid a warning from the Irix C compiler.
Nicholas Clark [Mon, 30 Jan 2006 16:29:38 +0000 (16:29 +0000)]
p4raw-id: //depot/perl@27005
hv.c
patch
|
blob
|
blame
|
history
diff --git
a/hv.c
b/hv.c
index
0ab2558
..
fe43f50
100644
(file)
--- a/
hv.c
+++ b/
hv.c
@@
-637,7
+637,7
@@
S_hv_fetch_common(pTHX_ HV *hv, SV *keysv, const char *key, STRLEN klen,
}
if (is_utf8) {
- char * const keysave = (char * const)key;
+ char * const keysave = (char *)key;
key = (char*)bytes_from_utf8((U8*)key, &klen, &is_utf8);
if (is_utf8)
flags |= HVhek_UTF8;