Doc fix for perlguts / threading
authorArthur Bergman <arthur@contiller.se>
Wed, 25 Jul 2001 11:28:23 +0000 (13:28 +0200)
committerNick Ing-Simmons <nik@tiuk.ti.com>
Thu, 26 Jul 2001 06:23:32 +0000 (06:23 +0000)
Message-Id:  <B7845DD6.2812%arthur@contiller.se>

p4raw-id: //depot/perl@11471

pod/perlguts.pod

index 323d456..6478efd 100644 (file)
@@ -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;
     };