[pypy-commit] pypy rgc-mem-pressure: small fix

justinpeel noreply at buildbot.pypy.org
Mon Oct 17 04:32:25 CEST 2011


Author: Justin Peel <notmuchtotell at gmail.com>
Branch: rgc-mem-pressure
Changeset: r48107:89bac1cc8a60
Date: 2011-10-16 20:32 -0600
http://bitbucket.org/pypy/pypy/changeset/89bac1cc8a60/

Log:	small fix

diff --git a/pypy/rpython/memory/gctransform/framework.py b/pypy/rpython/memory/gctransform/framework.py
--- a/pypy/rpython/memory/gctransform/framework.py
+++ b/pypy/rpython/memory/gctransform/framework.py
@@ -386,7 +386,7 @@
                 raw_malloc_memory_pressure_varsize,
                 [annmodel.SomeInteger(), annmodel.SomeInteger()],
                 annmodel.s_None, minimal_transform = False)
-            self.raw_malloc_memory_pressure = getfn(
+            self.raw_malloc_memory_pressure_ptr = getfn(
                 raw_malloc_memory_pressure,
                 [annmodel.SomeInteger()],
                 annmodel.s_None, minimal_transform = False)


More information about the pypy-commit mailing list