From: Rafael Garcia-Suarez Date: Fri, 28 Sep 2007 08:20:32 +0000 (+0000) Subject: Remove unneeded cast X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=edf2cad7315d5d47363c8918d08915f08ce31c59;p=p5sagit%2Fp5-mst-13.2.git Remove unneeded cast p4raw-id: //depot/perl@31991 --- diff --git a/mro.c b/mro.c index f3db774..37a0e96 100644 --- a/mro.c +++ b/mro.c @@ -61,7 +61,7 @@ Perl_mro_meta_init(pTHX_ HV* stash) HvAUX(stash)->xhv_mro_meta = newmeta; newmeta->cache_gen = 1; newmeta->pkg_gen = 1; - newmeta->mro_which = (void *) mros; + newmeta->mro_which = mros; return newmeta; }