Changeset 1359fbd1013bb48528d54f8674d3feb2acfbdd45
- Timestamp:
- 15/10/07 19:51:11
(1 year ago)
- Author:
- Pierre d'Herbemont <pdherbemont@videolan.org>
- git-committer:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1192470671 +0000
- git-parent:
[22861410d6d76dd5ecd05f0bfa0f070892a3d8e5]
- git-author:
- Pierre d'Herbemont <pdherbemont@videolan.org> 1192470671 +0000
- Message:
vlc_arrays.h: Use item_at_index istead of object_at_index.
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rda53016 |
r1359fbd |
|
| 309 | 309 | |
|---|
| 310 | 310 | static inline void * |
|---|
| 311 | | vlc_array_object_at_index( vlc_array_t * p_array, int i_index ) |
|---|
| | 311 | vlc_array_item_at_index( vlc_array_t * p_array, int i_index ) |
|---|
| 312 | 312 | { |
|---|
| 313 | 313 | return p_array->pp_elems[i_index]; |
|---|