]> git.sesse.net Git - vlc/commitdiff
vlc_arrays.h: Use item_at_index istead of object_at_index.
authorPierre d'Herbemont <pdherbemont@videolan.org>
Mon, 15 Oct 2007 17:51:11 +0000 (17:51 +0000)
committerPierre d'Herbemont <pdherbemont@videolan.org>
Mon, 15 Oct 2007 17:51:11 +0000 (17:51 +0000)
include/vlc_arrays.h

index 4a4085c4df92b011060b5a918c323bdd52cc8115..845df5c4f8f2cdfe30f093d57e317d22b33010c7 100644 (file)
@@ -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];
 }