Commit fb8aac67 authored by Jean-Paul Saman's avatar Jean-Paul Saman

Fix compiler warning

parent 2a8c2b23
...@@ -1535,8 +1535,7 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[], ...@@ -1535,8 +1535,7 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[],
"You should use --%s instead.\n", "You should use --%s instead.\n",
p_conf->psz_name, p_conf->psz_current); p_conf->psz_name, p_conf->psz_current);
} }
//*psz_name = *(p_conf->psz_current); *psz_name = *(p_conf->psz_current);
psz_name = p_conf->psz_current;
p_conf = config_FindConfig( p_this, psz_name ); p_conf = config_FindConfig( p_this, psz_name );
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment