diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-04-19 14:50:11 +0000 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2007-04-19 14:50:11 +0000 |
commit | 14f97ce6b1baa27085a0b448ebaba39310e8ed92 (patch) | |
tree | ccbdb57a6f14f7f45c4d7bcb14f8407c33eb3238 /mro.c | |
parent | e1a479c5e0c08fb10925261f03573261c69ca0dc (diff) | |
download | perl-14f97ce6b1baa27085a0b448ebaba39310e8ed92.tar.gz |
Change an "Internal error" message to the more common "panic"
in the C3 MRO code
p4raw-id: //depot/perl@30981
Diffstat (limited to 'mro.c')
-rw-r--r-- | mro.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -334,7 +334,7 @@ Perl_mro_get_linear_isa(pTHX_ HV *stash) } else if(meta->mro_which == MRO_C3) { return mro_get_linear_isa_c3(stash, 0); } else { - Perl_croak(aTHX_ "Internal error: invalid MRO!"); + Perl_croak(aTHX_ "panic: invalid MRO!"); } } |