[pypy-svn] r17358 - pypy/dist/pypy/translator/c

arigo at codespeak.net arigo at codespeak.net
Thu Sep 8 13:50:17 CEST 2005


Author: arigo
Date: Thu Sep  8 13:50:16 2005
New Revision: 17358

Modified:
   pypy/dist/pypy/translator/c/gc.py
Log:
Shut off a warning caused by a change of type (long->char)
that we forgot to change here too.


Modified: pypy/dist/pypy/translator/c/gc.py
==============================================================================
--- pypy/dist/pypy/translator/c/gc.py	(original)
+++ pypy/dist/pypy/translator/c/gc.py	Thu Sep  8 13:50:16 2005
@@ -327,7 +327,7 @@
     # for rtti node
 
     def rtti_type(self):
-        return 'long @'
+        return BoehmGcRuntimeTypeInfo_OpaqueNode.typename
 
     def rtti_node_factory(self):
         return BoehmGcRuntimeTypeInfo_OpaqueNode



More information about the Pypy-commit mailing list