[pypy-svn] r7466 - pypy/trunk/src/pypy/translator

bob at codespeak.net bob at codespeak.net
Fri Nov 19 19:08:13 CET 2004


Author: bob
Date: Fri Nov 19 19:08:12 2004
New Revision: 7466

Modified:
   pypy/trunk/src/pypy/translator/genc.h
Log:
another typo fixed




Modified: pypy/trunk/src/pypy/translator/genc.h
==============================================================================
--- pypy/trunk/src/pypy/translator/genc.h	(original)
+++ pypy/trunk/src/pypy/translator/genc.h	Fri Nov 19 19:08:12 2004
@@ -270,7 +270,7 @@
 		return NULL;
 	}
 	rval = PyObject_Call(function, args, NULL);
-	PyObject_DECREF(args);
+	Py_DECREF(args);
 	callstack_depth--;
 	if (rval == NULL) {
 		if (tstate->curexc_traceback == NULL) {



More information about the Pypy-commit mailing list