summaryrefslogtreecommitdiffstats
path: root/mpvcore/m_config.h
diff options
context:
space:
mode:
Diffstat (limited to 'mpvcore/m_config.h')
-rw-r--r--mpvcore/m_config.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpvcore/m_config.h b/mpvcore/m_config.h
index 07d27ac505..f16d1ea7fe 100644
--- a/mpvcore/m_config.h
+++ b/mpvcore/m_config.h
@@ -36,7 +36,6 @@ struct m_obj_desc;
// Config option
struct m_config_option {
- struct m_config_option *next;
bool is_generated : 1;
// Full name (ie option-subopt).
char *name;
@@ -51,6 +50,7 @@ struct m_config_option {
typedef struct m_config {
// Registered options.
struct m_config_option *opts; // all options, even suboptions
+ int num_opts;
// List of defined profiles.
struct m_profile *profiles;