Skip to content
Snippets Groups Projects
Commit cbccfbe4 authored by François Cartegnie's avatar François Cartegnie :fingers_crossed: Committed by Steve Lhomme
Browse files

vlc_array: constify count

parent 336f2614
No related branches found
No related tags found
1 merge request!4179vlc_array: constify count
Pipeline #380059 passed with stage
in 33 minutes and 37 seconds
......@@ -271,7 +271,7 @@ static inline void vlc_array_clear( vlc_array_t * p_array )
}
/* Read */
static inline size_t vlc_array_count( vlc_array_t * p_array )
static inline size_t vlc_array_count( const vlc_array_t * p_array )
{
return p_array->i_count;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment