]> git.sesse.net Git - vlc/commitdiff
some platforms can have int64_t typedefed to long long ..This patch prevents illegal...
authorpk@pk-desktop.(none) <pk@pk-desktop.(none)>
Thu, 15 Jul 2010 18:50:40 +0000 (00:20 +0530)
committerIlkka Ollakka <ileoo@videolan.org>
Thu, 15 Jul 2010 05:12:11 +0000 (08:12 +0300)
Signed-off-by: Ilkka Ollakka <ileoo@videolan.org>
src/libvlc.h

index 69996de313a69f5396a65a61c3b1bdff98e6a86c..11263e33e0493fde1f57200ff813322e07ef42b0 100644 (file)
@@ -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;