From 42096a34d53b725eabfe90a59b1e3c2cee6cda9c Mon Sep 17 00:00:00 2001 From: reimar Date: Thu, 25 Feb 2010 22:32:28 +0000 Subject: Make more option-parsing related function arguments const. Prerequisite for making stream_open filename const in a proper way. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30737 b3059339-0415-0410-9bf9-f77b7e298cf2 --- m_config.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'm_config.c') diff --git a/m_config.c b/m_config.c index 19a78264e6..2c2ca0fc08 100644 --- a/m_config.c +++ b/m_config.c @@ -37,10 +37,10 @@ #define MAX_PROFILE_DEPTH 20 static int -parse_profile(const m_option_t *opt, const char *name, char *param, void *dst, int src); +parse_profile(const m_option_t *opt, const char *name, const char *param, void *dst, int src); static void -set_profile(const m_option_t *opt, void* dst, void* src); +set_profile(const m_option_t *opt, void* dst, const void* src); static int show_profile(m_option_t *opt, char* name, char *param); @@ -515,7 +515,7 @@ m_config_set_profile(m_config_t* config, m_profile_t* p) { } static int -parse_profile(const m_option_t *opt, const char *name, char *param, void *dst, int src) +parse_profile(const m_option_t *opt, const char *name, const char *param, void *dst, int src) { m_config_t* config = opt->priv; char** list = NULL; @@ -551,7 +551,7 @@ parse_profile(const m_option_t *opt, const char *name, char *param, void *dst, i } static void -set_profile(const m_option_t *opt, void *dst, void *src) { +set_profile(const m_option_t *opt, void *dst, const void *src) { m_config_t* config = opt->priv; m_profile_t* p; char** list = NULL; -- cgit v1.2.3