diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-12 11:56:52 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-08-12 11:56:52 +0000 |
commit | 53bb94e2eadb9b74238a21ffe3168f4a80021d3b (patch) | |
tree | 49cf8e93ba6f7f145650715972d06b14190a54cf /mg.c | |
parent | ae58f265e7fbff559e896a4f408bc1e68b2241e1 (diff) | |
download | perl-53bb94e2eadb9b74238a21ffe3168f4a80021d3b.tar.gz |
If we are void we cannot return a value.
p4raw-id: //depot/perl@20648
Diffstat (limited to 'mg.c')
-rw-r--r-- | mg.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2540,7 +2540,7 @@ cleanup: PL_Sv = tSv; /* Restore global temporaries. */ PL_Xpv = tXpv; - return 0; + return; } |