summaryrefslogtreecommitdiff
path: root/mathoms.c
diff options
context:
space:
mode:
authorTony Cook <tony@develop-help.com>2010-10-13 10:12:35 +1100
committerTony Cook <tony@develop-help.com>2010-10-13 10:12:35 +1100
commit989690ac118eb981de3afdd9b2e092362f453d31 (patch)
treec7be2f0f30821d04f00b8f18283a84b1d5e7e4cf /mathoms.c
parentb4a0206cd572612eed26212e3a11480fe73a2836 (diff)
downloadperl-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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mathoms.c b/mathoms.c
index 1477f122b1..2a5650439c 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 */