Commit 12a85b8a authored by pk@pk-desktop.(none)'s avatar pk@pk-desktop.(none) Committed by Ilkka Ollakka

some platforms can have int64_t typedefed to long long ..This patch prevents...

some platforms can have int64_t typedefed to long long ..This patch prevents illegal implicit conversion from long long * to int *
Signed-off-by: default avatarIlkka Ollakka <ileoo@videolan.org>
parent d350820b
......@@ -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;
......
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