Commit d2ea07fa authored by Antoine Cellerier's avatar Antoine Cellerier

You still need the cast to compile :)

parent 080cb247
......@@ -303,7 +303,7 @@ static inline void vlc_array_clear( vlc_array_t * p_array )
static inline vlc_array_t * vlc_array_new( void )
{
vlc_array_t * ret = malloc( sizeof(vlc_array_t) );
vlc_array_t * ret = (vlc_array_t *)malloc( sizeof(vlc_array_t) );
vlc_array_init( ret );
return ret;
}
......
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