diff options
author | Florian Ragwitz <rafl@debian.org> | 2010-11-25 02:43:27 +0100 |
---|---|---|
committer | Florian Ragwitz <rafl@debian.org> | 2010-11-25 02:43:27 +0100 |
commit | 70a53b35304cccc28c78bbda3a5e80f421d5a8a0 (patch) | |
tree | 60f2c858eb17d6f6320280fbec2eb3f790f0cd4f /pod/perlguts.pod | |
parent | 34c313739b9e38cf0e8e75916cc84fcb9c76e24b (diff) | |
download | perl-70a53b35304cccc28c78bbda3a5e80f421d5a8a0.tar.gz |
Fix signature of sv_unmagic in perlguts.pod
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index b56811ccf0..00df2550f4 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -958,7 +958,7 @@ This simply calls C<sv_magic> and coerces the C<gv> argument into an C<SV>. To remove the magic from an SV, call the function sv_unmagic: - void sv_unmagic(SV *sv, int type); + int sv_unmagic(SV *sv, int type); The C<type> argument should be equal to the C<how> value when the C<SV> was initially made magical. |