summaryrefslogtreecommitdiffstats
path: root/playlist.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-08-04 02:17:40 +0200
committerwm4 <wm4@nowhere>2012-08-04 19:59:55 +0200
commit714226b20ccd9b4b394201d37b3eeac17057ba88 (patch)
tree71b84934805c28708ca267dda84ff13642548de7 /playlist.c
parentc7fe5f58e3769d6f577cb42f60ec0d2386c8afc0 (diff)
downloadmpv-714226b20ccd9b4b394201d37b3eeac17057ba88.tar.bz2
mpv-714226b20ccd9b4b394201d37b3eeac17057ba88.tar.xz
playlist: rename params_count field to num_params for consistency
Other (newer) parts of mplayer use this convention, so don't introduce new conventions.
Diffstat (limited to 'playlist.c')
-rw-r--r--playlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/playlist.c b/playlist.c
index 908baa9096..27877cb8b3 100644
--- a/playlist.c
+++ b/playlist.c
@@ -32,14 +32,14 @@ struct playlist_entry *playlist_entry_new(const char *filename)
void playlist_entry_add_param(struct playlist_entry *e, bstr name, bstr value)
{
struct playlist_param p = {bstrdup(e, name), bstrdup(e, value)};
- MP_TARRAY_APPEND(e, e->params, e->params_count, p);
+ MP_TARRAY_APPEND(e, e->params, e->num_params, p);
}
void playlist_entry_add_params(struct playlist_entry *e,
struct playlist_param *params,
- int params_count)
+ int num_params)
{
- for (int n = 0; n < params_count; n++)
+ for (int n = 0; n < num_params; n++)
playlist_entry_add_param(e, params[n].name, params[n].value);
}