From ab33034266d7cb6f43386d3d7ed119eb4f1e0f33 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 5 Aug 2010 00:37:17 +0400 Subject: [PATCH] fix crash on log print. --- src/mod/endpoints/mod_h323/mod_h323.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/mod/endpoints/mod_h323/mod_h323.h b/src/mod/endpoints/mod_h323/mod_h323.h index 9383d03b86..087540c509 100644 --- a/src/mod/endpoints/mod_h323/mod_h323.h +++ b/src/mod/endpoints/mod_h323/mod_h323.h @@ -582,7 +582,8 @@ H323Channel * FSH323_T38Capability::CreateChannel( switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG,"FSH323_T38Capability::CreateChannel %p sessionID= %u direction=%s [%p]\n" , &connection , sessionID - , GetDirections[direction]); + , GetDirections[direction] + , this); return connection.CreateRealTimeLogicalChannel(*this, direction, sessionID, params); }