[pypy-svn] r51731 - pypy/branch/unified-rtti/pypy/translator/c/src

arigo at codespeak.net arigo at codespeak.net
Thu Feb 21 16:44:42 CET 2008


Author: arigo
Date: Thu Feb 21 16:44:38 2008
New Revision: 51731

Modified:
   pypy/branch/unified-rtti/pypy/translator/c/src/main.h
Log:
Fix (this is now an rffi.CCHARP directly).


Modified: pypy/branch/unified-rtti/pypy/translator/c/src/main.h
==============================================================================
--- pypy/branch/unified-rtti/pypy/translator/c/src/main.h	(original)
+++ pypy/branch/unified-rtti/pypy/translator/c/src/main.h	Thu Feb 21 16:44:38 2008
@@ -39,7 +39,7 @@
         /* fish for the exception type, at least */
 #ifndef AVR
         fprintf(stderr, "Fatal RPython error: %s\n",
-                RPyFetchExceptionType()->ov_name->items);
+                RPyFetchExceptionType()->ov_name);
 #endif
         exitcode = 1;
     }



More information about the Pypy-commit mailing list