diff options
author | Tony Cook <tony@develop-help.com> | 2010-10-13 10:12:35 +1100 |
---|---|---|
committer | Tony Cook <tony@develop-help.com> | 2010-10-13 10:12:35 +1100 |
commit | 989690ac118eb981de3afdd9b2e092362f453d31 (patch) | |
tree | c7be2f0f30821d04f00b8f18283a84b1d5e7e4cf /mathoms.c | |
parent | b4a0206cd572612eed26212e3a11480fe73a2836 (diff) | |
download | perl-989690ac118eb981de3afdd9b2e092362f453d31.tar.gz |
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.
Diffstat (limited to 'mathoms.c')
-rw-r--r-- | mathoms.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 */ |