[pypy-svn] r14299 - pypy/dist/pypy/rpython

pedronis at codespeak.net pedronis at codespeak.net
Tue Jul 5 17:44:24 CEST 2005


Author: pedronis
Date: Tue Jul  5 17:44:24 2005
New Revision: 14299

Modified:
   pypy/dist/pypy/rpython/rtyper.py
Log:
oops



Modified: pypy/dist/pypy/rpython/rtyper.py
==============================================================================
--- pypy/dist/pypy/rpython/rtyper.py	(original)
+++ pypy/dist/pypy/rpython/rtyper.py	Tue Jul  5 17:44:24 2005
@@ -531,7 +531,7 @@
         return self.genop('direct_call', [cf]+list(args_v), resulttype)
 
     def gencapicall(self, cfnname, args_v, resulttype=None, **flags):
-        return genexternalcall(cfname, args_v, resulttype=resulttype, external="C")
+        return self.genexternalcall(cfnname, args_v, resulttype=resulttype, external="C")
 
 # _______________________________________________________________________
 # this has the side-effect of registering the unary and binary operations



More information about the Pypy-commit mailing list