diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-04-04 16:15:38 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2010-04-04 16:15:38 +0000 |
commit | 2c7f1f8156a014772cd37e61bef622dd8de108f4 (patch) | |
tree | 883dc5a14ab4d928b1ebb0e363ca4976e54d31e7 /input/input.c | |
parent | 935147dd6403019492db95c351a68e95be065a5e (diff) | |
download | mpv-2c7f1f8156a014772cd37e61bef622dd8de108f4.tar.bz2 mpv-2c7f1f8156a014772cd37e61bef622dd8de108f4.tar.xz |
Mark input-related m_option_t arrays as const.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31002 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'input/input.c')
-rw-r--r-- | input/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/input/input.c b/input/input.c index c0adf35428..d9706804b7 100644 --- a/input/input.c +++ b/input/input.c @@ -599,7 +599,7 @@ static int mp_input_print_key_list(m_option_t* cfg); static int mp_input_print_cmd_list(m_option_t* cfg); // Our command line options -static m_option_t input_conf[] = { +static const m_option_t input_conf[] = { { "conf", &config_file, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL }, { "ar-dev", &ar_dev, CONF_TYPE_STRING, CONF_GLOBAL, 0, 0, NULL }, { "ar-delay", &ar_delay, CONF_TYPE_INT, CONF_GLOBAL, 0, 0, NULL }, @@ -613,7 +613,7 @@ static m_option_t input_conf[] = { { NULL, NULL, 0, 0, 0, 0, NULL} }; -static m_option_t mp_input_opts[] = { +static const m_option_t mp_input_opts[] = { { "input", &input_conf, CONF_TYPE_SUBCONFIG, 0, 0, 0, NULL}, { "nojoystick", &use_joystick, CONF_TYPE_FLAG, CONF_GLOBAL, 1, 0, NULL }, { "joystick", &use_joystick, CONF_TYPE_FLAG, CONF_GLOBAL, 0, 1, NULL }, |