From fb8aac670cd81dded1ec61986934d04eb2f3bb5d Mon Sep 17 00:00:00 2001 From: Jean-Paul Saman Date: Sat, 10 Mar 2007 15:58:36 +0000 Subject: [PATCH] Fix compiler warning --- src/misc/configuration.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/misc/configuration.c b/src/misc/configuration.c index 2d8717abc3..e889cb45a4 100644 --- a/src/misc/configuration.c +++ b/src/misc/configuration.c @@ -1535,8 +1535,7 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[], "You should use --%s instead.\n", 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 ); } -- 2.39.5