Commit 1359fbd1 authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

vlc_arrays.h: Use item_at_index istead of object_at_index.

parent 22861410
......@@ -308,7 +308,7 @@ vlc_array_count( vlc_array_t * p_array )
}
static inline void *
vlc_array_object_at_index( vlc_array_t * p_array, int i_index )
vlc_array_item_at_index( vlc_array_t * p_array, int i_index )
{
return p_array->pp_elems[i_index];
}
......
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