[pypy-commit] pypy default: more typo

mattip pypy.commits at gmail.com
Sat May 11 19:11:52 EDT 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r96604:19da1ad99ab7
Date: 2019-05-11 16:10 -0700
http://bitbucket.org/pypy/pypy/changeset/19da1ad99ab7/

Log:	more typo

diff --git a/rpython/translator/c/gc.py b/rpython/translator/c/gc.py
--- a/rpython/translator/c/gc.py
+++ b/rpython/translator/c/gc.py
@@ -464,7 +464,7 @@
         return '(char *)(%s) += sizeof(pypy_ss_t);' % (funcgen.gcpol_ss,)
 
     def OP_GC_LEAVE_ROOTS_FRAME(self, funcgen, op):
-        return (char *)(%s) -= sizeof(pypy_ss_t);' % (funcgen.gcpol_ss,)
+        return '(char *)(%s) -= sizeof(pypy_ss_t);' % (funcgen.gcpol_ss,)
 
     def OP_GC_SAVE_ROOT(self, funcgen, op):
         num = op.args[0].value


More information about the pypy-commit mailing list