Fixed protected method call.

git-svn-id: http://yate.null.ro/svn/yate/trunk@2326 acf43c95-373e-0410-b603-e72c3f656dc1
This commit is contained in:
marian 2008-11-11 11:33:27 +00:00
parent 0536ff4af7
commit f8029b52f0
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ int SS7Route::transmitMSU(const SS7Router* router, const SS7MSU& msu,
if (!l3)
continue;
DDebug(router,DebugAll,"Attempting transmitMSU on L3=%p '%s' [%p]",
l3.pointer(),l3->toString().c_str(),router);
(void*)l3,l3->toString().c_str(),router);
int chg = m_changes;
unlock();
int res = l3->transmitMSU(msu,label,sls);
@ -257,7 +257,7 @@ bool SS7Router::receivedMSU(const SS7MSU& msu, const SS7Label& label, SS7Layer3*
if (!l4)
continue;
DDebug(this,DebugAll,"Attempting receivedMSU to L4=%p '%s' [%p]",
l4.pointer(),l4->toString().c_str(),this);
(void*)l4,l4->toString().c_str(),this);
int chg = m_changes;
unlock();
if (l4->receivedMSU(msu,label,network,sls))