]> git.sesse.net Git - vlc/commitdiff
Fix string format.
authorRémi Duraffort <ivoire@videolan.org>
Thu, 19 Mar 2009 07:42:07 +0000 (08:42 +0100)
committerRémi Duraffort <ivoire@videolan.org>
Thu, 19 Mar 2009 07:52:55 +0000 (08:52 +0100)
modules/gui/skins2/controls/ctrl_video.cpp
modules/gui/skins2/src/vout_manager.cpp

index 16c8e48ab7fa7c52784496678893b492347ea463..894336a33a0a0163a28025dfb8cea9b6151841dc 100644 (file)
@@ -118,7 +118,7 @@ void CtrlVideo::setLayout( GenericLayout *pLayout,
     // register Video Control
     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" );
 }
 
index fd0242d5705be1d988d97f3e5ee05463a4599658..2315e583db8f4ae48c86f4254f045f6ffe39d2fe 100644 (file)
@@ -199,7 +199,7 @@ void* VoutManager::acceptVout( vout_thread_t* pVout, int width, int height )
     // save vout characteristics
     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 );
 
     return handle;
@@ -249,7 +249,7 @@ void VoutManager::releaseWindow( intf_thread_t *pIntf, vout_window_t *pWnd )
     {
         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 );
 
             // if a video control was being used, detach from it