[vlc-commits] commit: atmo: fix compiler warning. ( Rémi Duraffort )
git at videolan.org
git at videolan.org
Mon Aug 9 12:29:24 CEST 2010
vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Mon Aug 9 12:29:02 2010 +0200| [2b32342c35f88100bc70c0836f91f5af86ab434c] | committer: Rémi Duraffort
atmo: fix compiler warning.
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=2b32342c35f88100bc70c0836f91f5af86ab434c
---
modules/video_filter/atmo/atmo.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/video_filter/atmo/atmo.cpp b/modules/video_filter/atmo/atmo.cpp
index 1b5e3a2..a3f5ed9 100644
--- a/modules/video_filter/atmo/atmo.cpp
+++ b/modules/video_filter/atmo/atmo.cpp
@@ -2452,7 +2452,7 @@ static int StateCallback( vlc_object_t *p_this, char const *psz_cmd,
if((p_sys->b_usepausecolor == true) && (p_sys->b_enabled == true))
{
- msg_Dbg(p_filter, "state change from: %d to %d", oldval.i_int,
+ msg_Dbg(p_filter, "state change from: %"PRId64" to %"PRId64, oldval.i_int,
newval.i_int);
if((newval.i_int == PAUSE_S) && (oldval.i_int == PLAYING_S))
More information about the vlc-commits
mailing list