Commit 2b32342c authored by Rémi Duraffort's avatar Rémi Duraffort

atmo: fix compiler warning.

parent 829f7b96
......@@ -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))
......
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