diff options
author | Arthur Bergman <arthur@contiller.se> | 2001-07-25 13:28:23 +0200 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-07-26 06:23:32 +0000 |
commit | a9402793c9574e1dbb271feb8fa8772bc9a9e63a (patch) | |
tree | f24880433ccc3c052861a7d07979554556d2614f /pod/perlguts.pod | |
parent | c35d568123ef914fdb74b12b9e2efd1b9ec15d26 (diff) | |
download | perl-a9402793c9574e1dbb271feb8fa8772bc9a9e63a.tar.gz |
Doc fix for perlguts / threading
Message-Id: <B7845DD6.2812%arthur@contiller.se>
p4raw-id: //depot/perl@11471
Diffstat (limited to 'pod/perlguts.pod')
-rw-r--r-- | pod/perlguts.pod | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlguts.pod b/pod/perlguts.pod index 323d456935..6478efde97 100644 --- a/pod/perlguts.pod +++ b/pod/perlguts.pod @@ -966,8 +966,8 @@ C function any time a scalar's value is used or changed. The C<MAGIC>'s C<mg_ptr> field points to a C<ufuncs> structure: struct ufuncs { - I32 (*uf_val)(IV, SV*); - I32 (*uf_set)(IV, SV*); + I32 (*uf_val)(pTHX_ IV, SV*); + I32 (*uf_set)(pTHX_ IV, SV*); IV uf_index; }; |