[svn:parrot] r40371 - trunk/src

NotFound at svn.parrot.org NotFound at svn.parrot.org
Sun Aug 2 02:33:49 UTC 2009


Author: NotFound
Date: Sun Aug  2 02:33:48 2009
New Revision: 40371
URL: https://trac.parrot.org/parrot/changeset/40371

Log:
[cage] fix C90 violation, ttbot++

Modified:
   trunk/src/exceptions.c

Modified: trunk/src/exceptions.c
==============================================================================
--- trunk/src/exceptions.c	Sun Aug  2 02:20:54 2009	(r40370)
+++ trunk/src/exceptions.c	Sun Aug  2 02:33:48 2009	(r40371)
@@ -130,8 +130,8 @@
         if (use_perr)
             Parrot_io_eprintf(interp, "%S\n", message);
         else {
-            fflush(stderr);
             char * const msg = Parrot_str_to_cstring(interp, message);
+            fflush(stderr);
             fprintf(stderr, "\n%s\n", msg);
             Parrot_str_free_cstring(msg);
         }


More information about the parrot-commits mailing list