diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-15 03:07:08 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-02-15 03:07:08 +0000 |
commit | 08105a92a3e1f0f7ac18e8807e8c0cad635b748a (patch) | |
tree | fe7b7b715c945c89315f70698326c7063b5d14a7 /mg.c | |
parent | 86cb71737ed277fd6cd123008b871f7a00c2944b (diff) | |
download | perl-08105a92a3e1f0f7ac18e8807e8c0cad635b748a.tar.gz |
add const qualifier to most char* prototypes, handle ripple effect
p4raw-id: //depot/perl@2924
Diffstat (limited to 'mg.c')
-rw-r--r-- | mg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -275,7 +275,7 @@ mg_find(SV *sv, int type) } int -mg_copy(SV *sv, SV *nsv, char *key, I32 klen) +mg_copy(SV *sv, SV *nsv, const char *key, I32 klen) { int count = 0; MAGIC* mg; |