[svn:parrot] r38790 - branches/report_hll_info/src

jonathan at svn.parrot.org jonathan at svn.parrot.org
Fri May 15 14:39:44 UTC 2009


Author: jonathan
Date: Fri May 15 14:39:43 2009
New Revision: 38790
URL: https://trac.parrot.org/parrot/changeset/38790

Log:
Fix something that broke C89 compilation.

Modified:
   branches/report_hll_info/src/exceptions.c

Modified: branches/report_hll_info/src/exceptions.c
==============================================================================
--- branches/report_hll_info/src/exceptions.c	Fri May 15 12:28:06 2009	(r38789)
+++ branches/report_hll_info/src/exceptions.c	Fri May 15 14:39:43 2009	(r38790)
@@ -250,8 +250,8 @@
     if (PMC_IS_NULL(handler)) {
         const INTVAL   severity    = VTABLE_get_integer_keyed_str(interp, exception, CONST_STRING(interp, "severity"));
         if (severity < EXCEPT_error) {
-            print_hll_info_from_exception(interp, exception);
             PMC * const resume = VTABLE_get_attr_str(interp, exception, CONST_STRING(interp, "resume"));
+            print_hll_info_from_exception(interp, exception);
 
             /* caution against output swap (with PDB_backtrace) */
             fflush(stderr);


More information about the parrot-commits mailing list