[mpich2-commits] r5523 - mpich2/trunk/src/mpid/ch3/channels/nemesis/include

goodell at mcs.anl.gov goodell at mcs.anl.gov
Wed Oct 21 16:33:03 CDT 2009


Author: goodell
Date: 2009-10-21 16:33:03 -0500 (Wed, 21 Oct 2009)
New Revision: 5523

Modified:
   mpich2/trunk/src/mpid/ch3/channels/nemesis/include/mpidi_ch3_impl.h
Log:
Fix bad format string specifier in SendQ log msg from r5506.

A good catch by Darius.

No reviewer.

Modified: mpich2/trunk/src/mpid/ch3/channels/nemesis/include/mpidi_ch3_impl.h
===================================================================
--- mpich2/trunk/src/mpid/ch3/channels/nemesis/include/mpidi_ch3_impl.h	2009-10-21 21:33:01 UTC (rev 5522)
+++ mpich2/trunk/src/mpid/ch3/channels/nemesis/include/mpidi_ch3_impl.h	2009-10-21 21:33:03 UTC (rev 5523)
@@ -33,7 +33,7 @@
     /* MT - not thread safe! */							\
     MPIDI_DBG_PRINTF((50, FCNAME, "SendQ_enqueue req=0x%08x", req->handle));	\
     MPIU_DBG_MSG_FMT(CH3_CHANNEL, VERBOSE, (MPIU_DBG_FDEST,                     \
-                      "MPIDI_CH3I_SendQ_enqueue(req=0x%x (handle=0x%x), queue=%s (%d))", \
+                      "MPIDI_CH3I_SendQ_enqueue(req=%p (handle=0x%x), queue=%s (%d))", \
                       (req),                                                    \
                       (req)->handle,                                            \
                       #queue, queue));                                          \
@@ -62,7 +62,7 @@
     MPIDI_DBG_PRINTF((50, FCNAME, "SendQ_dequeue req=0x%08x",			\
                       MPIDI_CH3I_sendq_head[queue]->handle));			\
     MPIU_DBG_MSG_FMT(CH3_CHANNEL, VERBOSE, (MPIU_DBG_FDEST,                     \
-                      "MPIDI_CH3I_SendQ_dequeue(queue=%s (%d)), head req=0x%x (handle=0x%x)", \
+                      "MPIDI_CH3I_SendQ_dequeue(queue=%s (%d)), head req=%p (handle=0x%x)", \
                       #queue, queue,                                            \
                       MPIDI_CH3I_sendq_head[queue],                             \
                       ((MPIDI_CH3I_sendq_head[queue]) ? MPIDI_CH3I_sendq_head[queue]->handle : -1))); \



More information about the mpich2-commits mailing list