[svn:mod_parrot] r598 - mod_parrot/trunk/src

[email protected] Sun, 25 Jan 2009 09:54:09 -0800 (PST)
Newsgroups perl.cvs.mod_parrot
Message-ID <[email protected]>
Author: jhorwitz
Date: Sun Jan 25 09:54:09 2009
New Revision: 598

Modified:
   mod_parrot/trunk/src/context.c

Log:
fix mismatch in trace output


Modified: mod_parrot/trunk/src/context.c
==============================================================================
--- mod_parrot/trunk/src/context.c	(original)
+++ mod_parrot/trunk/src/context.c	Sun Jan 25 09:54:09 2009
@@ -139,7 +139,7 @@
     MODPARROT_CTX_LOCK(ctxp); /* no threads here, just for consistency */
 #endif /* MPM_IS_THREADED */
 
-    MP_TRACE_c(base_server, "reserved context %p from pool %p", ctx_pool, ctxp);
+    MP_TRACE_c(base_server, "reserved context %p from pool %p", ctxp, ctx_pool);
 
     return(ctxp);
 }