Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VLC
Manage
Activity
Members
Labels
Plan
Issues
4k
Issue boards
Milestones
Code
Merge requests
444
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VideoLAN
VLC
Commits
cbccfbe4
Commit
cbccfbe4
authored
1 year ago
by
François Cartegnie
Committed by
Steve Lhomme
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
vlc_array: constify count
parent
336f2614
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!4179
vlc_array: constify count
Pipeline
#380059
passed with stage
Stage:
in 33 minutes and 37 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
include/vlc_arrays.h
+1
-1
1 addition, 1 deletion
include/vlc_arrays.h
with
1 addition
and
1 deletion
include/vlc_arrays.h
+
1
−
1
View file @
cbccfbe4
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment