Remove unused static function m_config_get_option_ptr().

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@30770 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
cehoyos 2010-02-27 20:52:06 +00:00
parent e2a81b9be1
commit b3db1152bb
1 changed files with 0 additions and 13 deletions

View File

@ -415,19 +415,6 @@ m_config_get_option(m_config_t *config, char* arg) {
return NULL;
}
static const void*
m_config_get_option_ptr(m_config_t *config, char* arg) {
const m_option_t* conf;
#ifdef MP_DEBUG
assert(config != NULL);
assert(arg != NULL);
#endif
conf = m_config_get_option(config,arg);
if(!conf) return NULL;
return conf->p;
}
void
m_config_print_option_list(m_config_t *config) {