Commit 20ea7729 authored by Laurent Aimar's avatar Laurent Aimar

Compilation warning fix.

parent 586988c0
......@@ -931,7 +931,7 @@ static int DumpCommand( vlc_object_t *p_this, char const *psz_cmd,
printf( ": %f", p_var->val.f_float );
break;
case VLC_VAR_TIME:
printf( ": " I64Fi, p_var->val.i_time );
printf( ": " I64Fi, (int64_t)p_var->val.i_time );
break;
case VLC_VAR_ADDRESS:
printf( ": %p", p_var->val.p_address );
......
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