From f09396ab7d584311a9784006eca53f6379e7218b Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Sun, 3 Oct 2021 18:31:42 +0100 Subject: 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 --- player/command.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player') 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}; -- cgit v1.2.3