From b694c2d0512da5ccd93b9141594f96e8b0486a46 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Thu, 15 Jul 2010 23:32:10 +0200 Subject: [PATCH] Fix compiler warning. --- src/text/strings.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/text/strings.c b/src/text/strings.c index 0a3147402a..cd110e7332 100644 --- a/src/text/strings.c +++ b/src/text/strings.c @@ -695,7 +695,7 @@ char *str_format_meta( vlc_object_t *p_object, const char *string ) if( p_item && p_item->p_stats ) { vlc_mutex_lock( &p_item->p_stats->lock ); - snprintf( buf, 10, "%d", + snprintf( buf, 10, "%"PRIi64, p_item->p_stats->i_displayed_pictures ); vlc_mutex_unlock( &p_item->p_stats->lock ); } -- 2.39.2