From: Jarkko Hietaniemi Date: Tue, 12 Aug 2003 11:56:52 +0000 (+0000) Subject: If we are void we cannot return a value. X-Git-Tag: accepted/trunk/20130322.191538~23399 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=53bb94e2eadb9b74238a21ffe3168f4a80021d3b;p=platform%2Fupstream%2Fperl.git If we are void we cannot return a value. p4raw-id: //depot/perl@20648 --- diff --git a/mg.c b/mg.c index 712a339..6f92bb5 100644 --- a/mg.c +++ b/mg.c @@ -2540,7 +2540,7 @@ cleanup: PL_Sv = tSv; /* Restore global temporaries. */ PL_Xpv = tXpv; - return 0; + return; }