[vlc-commits] commit: Fix printf type. ( Rémi Duraffort )

git at videolan.org git at videolan.org
Mon Jul 5 21:56:38 CEST 2010


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Mon Jul  5 21:54:52 2010 +0200| [1e8de67594fcf0f6cfefa2dd969519db4671e762] | committer: Rémi Duraffort 

Fix printf type.

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=1e8de67594fcf0f6cfefa2dd969519db4671e762
---

 modules/control/http/rpn.c    |    2 +-
 modules/video_filter/mosaic.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/control/http/rpn.c b/modules/control/http/rpn.c
index 320a4ff..eb7aeee 100644
--- a/modules/control/http/rpn.c
+++ b/modules/control/http/rpn.c
@@ -614,7 +614,7 @@ void EvaluateRPN( intf_thread_t *p_intf, mvar_t  *vars,
                 case VLC_VAR_INTEGER:
                 case VLC_VAR_HOTKEY:
                     val.i_int = SSPopN( st, vars );
-                    msg_Dbg( p_intf, "requested %s var change: %s->%d",
+                    msg_Dbg( p_intf, "requested %s var change: %s->%"PRIu64,
                              psz_object, psz_variable, val.i_int );
                     break;
                 case VLC_VAR_STRING:
diff --git a/modules/video_filter/mosaic.c b/modules/video_filter/mosaic.c
index 82fda82..faae53d 100644
--- a/modules/video_filter/mosaic.c
+++ b/modules/video_filter/mosaic.c
@@ -772,7 +772,7 @@ static int MosaicCallback( vlc_object_t *p_this, char const *psz_var,
     else if( VAR_IS( "xoffset" ) )
     {
         vlc_mutex_lock( &p_sys->lock );
-        msg_Dbg( p_this, "changing x offset from %dpx to %px",
+        msg_Dbg( p_this, "changing x offset from %dpx to %dpx",
                          p_sys->i_xoffset, (int)newval.i_int );
         p_sys->i_xoffset = __MAX( newval.i_int, 0 );
         vlc_mutex_unlock( &p_sys->lock );



More information about the vlc-commits mailing list