diff options
author | Uoti Urpala <uau@symbol.nonexistent.invalid> | 2008-04-26 16:35:40 +0300 |
---|---|---|
committer | Uoti Urpala <uau@symbol.nonexistent.invalid> | 2008-04-26 16:35:40 +0300 |
commit | 05ad815133fcb0ade9a1040069dedba1abf9d6f0 (patch) | |
tree | cead166eb1f9fe7f1be9c0de374e0f93f8cf2e56 /m_config.c | |
parent | 37e1edee352afb6d1b212403a84827aa6072943a (diff) | |
download | mpv-05ad815133fcb0ade9a1040069dedba1abf9d6f0.tar.bz2 mpv-05ad815133fcb0ade9a1040069dedba1abf9d6f0.tar.xz |
Mark some constant symbols as such
Diffstat (limited to 'm_config.c')
-rw-r--r-- | m_config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/m_config.c b/m_config.c index fc61494f0d..09329ba287 100644 --- a/m_config.c +++ b/m_config.c @@ -61,7 +61,7 @@ m_config_t *m_config_new(void *optstruct, m_config_t* config; static int initialized = 0; static m_option_type_t profile_opt_type; - static m_option_t ref_opts[] = { + static const m_option_t ref_opts[] = { { "profile", NULL, &profile_opt_type, CONF_NOSAVE, 0, 0, NULL }, { "show-profile", show_profile, CONF_TYPE_PRINT_FUNC, CONF_NOCFG, 0, 0, NULL }, { "list-options", list_options, CONF_TYPE_PRINT_FUNC, CONF_NOCFG, 0, 0, NULL }, |