From: Steve Hay Date: Tue, 24 Apr 2007 13:31:29 +0000 (+0000) Subject: Silence VC6 warning about not all control paths returning a value X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=7caa839cb84467e75e51a8014a80e98dcb2bb9d5;p=p5sagit%2Fp5-mst-13.2.git Silence VC6 warning about not all control paths returning a value p4raw-id: //depot/perl@31057 --- diff --git a/mro.c b/mro.c index 0313feb..437d661 100644 --- a/mro.c +++ b/mro.c @@ -431,6 +431,7 @@ Perl_mro_get_linear_isa(pTHX_ HV *stash) } else { Perl_croak(aTHX_ "panic: invalid MRO!"); } + return NULL; /* NOT REACHED */ } /*