summaryrefslogtreecommitdiffstats
path: root/player
diff options
context:
space:
mode:
authorEmil Velikov <emil.l.velikov@gmail.com>2021-10-03 18:31:42 +0100
committerDudemanguy <random342@airmail.cc>2021-11-15 14:02:08 +0000
commitf09396ab7d584311a9784006eca53f6379e7218b (patch)
tree41aed3d7a05df891bb515b98649fd03741e237ea /player
parent37619c4cf590f866bfb5fe517ef4daefb36c9193 (diff)
downloadmpv-f09396ab7d584311a9784006eca53f6379e7218b.tar.bz2
mpv-f09396ab7d584311a9784006eca53f6379e7218b.tar.xz
options: const annotate m_obj_list accessors
Nearly all the code base correctly references the data as constant. But a couple of instances - fix those. Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Diffstat (limited to 'player')
-rw-r--r--player/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/player/command.c b/player/command.c
index 0b0dc71715..7403bb4cf4 100644
--- a/player/command.c
+++ b/player/command.c
@@ -3395,7 +3395,7 @@ static int mp_property_option_info(void *ctx, struct m_property *prop,
MP_TARRAY_APPEND(NULL, choices, num, NULL);
}
if (opt->type == &m_option_type_obj_settings_list) {
- struct m_obj_list *objs = opt->priv;
+ const struct m_obj_list *objs = opt->priv;
int num = 0;
for (int n = 0; ; n++) {
struct m_obj_desc desc = {0};