In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/989690ac118eb981de3afdd9b2e092362f453d31?hp=b4a0206cd572612eed26212e3a11480fe73a2836>

- Log -----------------------------------------------------------------
commit 989690ac118eb981de3afdd9b2e092362f453d31
Author: Tony Cook <t...@develop-help.com>
Date:   Wed Oct 13 10:12:35 2010 +1100

    ANSI C-ify the Perl_mro_isa_changed_in return mathoms.c
    
    A return statement with an expression shall not appear in a
    function whose return type is void.
    
    See http://source.test-smoke.org/tsdb?mode=report&rid=86779&top=86781
    for an example build failure.
-----------------------------------------------------------------------

Summary of changes:
 mathoms.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/mathoms.c b/mathoms.c
index 1477f12..2a56504 100644
--- a/mathoms.c
+++ b/mathoms.c
@@ -1558,7 +1558,7 @@ Perl_sv_2bool(pTHX_ register SV *const sv)
 void
 Perl_mro_isa_changed_in(pTHX_ HV* stash)
 {
-    return mro_isa_changed_in3(stash, NULL, 0);
+    mro_isa_changed_in3(stash, NULL, 0);
 }
 
 #endif /* NO_MATHOMS */

--
Perl5 Master Repository

Reply via email to