Commit f957d62e authored by Rémi Duraffort's avatar Rémi Duraffort

Fix string format.

parent b6c753c6
...@@ -118,7 +118,7 @@ void CtrlVideo::setLayout( GenericLayout *pLayout, ...@@ -118,7 +118,7 @@ void CtrlVideo::setLayout( GenericLayout *pLayout,
// register Video Control // register Video Control
VoutManager::instance( getIntf() )->registerCtrlVideo( this ); VoutManager::instance( getIntf() )->registerCtrlVideo( this );
msg_Dbg( getIntf(),"New VideoControl detected(%x), useability=%s", msg_Dbg( getIntf(),"New VideoControl detected(%p), useability=%s",
this, m_bIsUseable ? "true" : "false" ); this, m_bIsUseable ? "true" : "false" );
} }
......
...@@ -199,7 +199,7 @@ void* VoutManager::acceptVout( vout_thread_t* pVout, int width, int height ) ...@@ -199,7 +199,7 @@ void* VoutManager::acceptVout( vout_thread_t* pVout, int width, int height )
// save vout characteristics // save vout characteristics
m_SavedVoutVec.push_back( SavedVout( pVout, pVoutWindow, pCtrlVideo ) ); m_SavedVoutVec.push_back( SavedVout( pVout, pVoutWindow, pCtrlVideo ) );
msg_Dbg( getIntf(), "New incoming vout=0x%x, handle=0x%x, VideoCtrl=0x%x", msg_Dbg( getIntf(), "New incoming vout=0x%p, handle=0x%p, VideoCtrl=0x%p",
pVout, handle, pCtrlVideo ); pVout, handle, pCtrlVideo );
return handle; return handle;
...@@ -249,7 +249,7 @@ void VoutManager::releaseWindow( intf_thread_t *pIntf, vout_window_t *pWnd ) ...@@ -249,7 +249,7 @@ void VoutManager::releaseWindow( intf_thread_t *pIntf, vout_window_t *pWnd )
{ {
if( (*it).pVout == pVout ) if( (*it).pVout == pVout )
{ {
msg_Dbg( pIntf, "vout released vout=0x%x, VideoCtrl=0x%x", msg_Dbg( pIntf, "vout released vout=0x%p, VideoCtrl=0x%p",
pVout, (*it).pCtrlVideo ); pVout, (*it).pCtrlVideo );
// if a video control was being used, detach from it // if a video control was being used, detach from it
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment