[svn:parrot] r47650 - trunk/src/pmc

NotFound at svn.parrot.org NotFound at svn.parrot.org
Tue Jun 15 23:07:43 UTC 2010


Author: NotFound
Date: Tue Jun 15 23:07:42 2010
New Revision: 47650
URL: https://trac.parrot.org/parrot/changeset/47650

Log:
use SELF instead of STATICSELF to prevent breaking inheritance, cotto++

Modified:
   trunk/src/pmc/bytebuffer.pmc

Modified: trunk/src/pmc/bytebuffer.pmc
==============================================================================
--- trunk/src/pmc/bytebuffer.pmc	Tue Jun 15 22:44:18 2010	(r47649)
+++ trunk/src/pmc/bytebuffer.pmc	Tue Jun 15 23:07:42 2010	(r47650)
@@ -224,7 +224,7 @@
         INTVAL size;
 
         GET_ATTR_size(INTERP, SELF, size);
-        STATICSELF.set_integer_keyed_int(size, value);
+        SELF.set_integer_keyed_int(size, value);
     }
 
 /*


More information about the parrot-commits mailing list