Commit b694c2d0 authored by Rémi Duraffort's avatar Rémi Duraffort

Fix compiler warning.

parent 6b0dd9ac
...@@ -695,7 +695,7 @@ char *str_format_meta( vlc_object_t *p_object, const char *string ) ...@@ -695,7 +695,7 @@ char *str_format_meta( vlc_object_t *p_object, const char *string )
if( p_item && p_item->p_stats ) if( p_item && p_item->p_stats )
{ {
vlc_mutex_lock( &p_item->p_stats->lock ); vlc_mutex_lock( &p_item->p_stats->lock );
snprintf( buf, 10, "%d", snprintf( buf, 10, "%"PRIi64,
p_item->p_stats->i_displayed_pictures ); p_item->p_stats->i_displayed_pictures );
vlc_mutex_unlock( &p_item->p_stats->lock ); vlc_mutex_unlock( &p_item->p_stats->lock );
} }
......
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