From c8ce92fc7936a80fc9453fb1db9940ba01e31cad Mon Sep 17 00:00:00 2001 From: Jarkko Hietaniemi Date: Fri, 15 Dec 2000 15:44:16 +0000 Subject: [PATCH] Some compilers get huffy if you do not cast a const pointer to a non-const when assigning. p4raw-id: //depot/perl@8132 --- gv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gv.c b/gv.c index fa830bf..3a81248 100644 --- a/gv.c +++ b/gv.c @@ -1196,7 +1196,7 @@ Perl_Gv_AMupdate(pTHX_ HV *stash) for (i = 1; i < lim; i++) amt.table[i] = Nullcv; for (; i < NofAMmeth; i++) { - char *cooky = PL_AMG_names[i]; + char *cooky = (char*)PL_AMG_names[i]; /* Human-readable form, for debugging: */ char *cp = (i >= DESTROY_amg ? cooky : AMG_id2name(i)); STRLEN l = strlen(cooky); -- 2.7.4