From 12a85b8a32922fe28a2d67fd42a592baae8e0dce Mon Sep 17 00:00:00 2001 From: "pk@pk-desktop.(none)" Date: Fri, 16 Jul 2010 00:20:40 +0530 Subject: [PATCH] some platforms can have int64_t typedefed to long long ..This patch prevents illegal implicit conversion from long long * to int * Signed-off-by: Ilkka Ollakka --- src/libvlc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libvlc.h b/src/libvlc.h index 69996de313..11263e33e0 100644 --- a/src/libvlc.h +++ b/src/libvlc.h @@ -267,7 +267,7 @@ int stats_Get (vlc_object_t*, counter_t *, vlc_value_t*); void stats_CounterClean (counter_t * ); static inline int stats_GetInteger( vlc_object_t *p_obj, counter_t *p_counter, - int *value ) + int64_t *value ) { int i_ret; vlc_value_t val; val.i_int = 0; -- 2.39.2