From: Christophe Mutricy Date: Thu, 26 May 2005 17:55:42 +0000 (+0000) Subject: Backport of [11172] X-Git-Tag: 0.8.2~133 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=3ad31b05c1d8628668677718ee7e05974ded332b;p=vlc Backport of [11172] --- diff --git a/src/misc/configuration.c b/src/misc/configuration.c index bb44c07271..c22f16e285 100644 --- a/src/misc/configuration.c +++ b/src/misc/configuration.c @@ -1661,8 +1661,9 @@ int __config_LoadCmdLine( vlc_object_t *p_this, int *pi_argc, char *ppsz_argv[], /* Internal error: unknown option */ if( !b_ignore_errors ) { - fprintf( stderr, "%s: unknown option ", - p_this->p_vlc->psz_object_name ); + fprintf( stderr, "%s: unknown option" + " or missing mandatory argument ", + p_this->p_vlc->psz_object_name ); if( optopt ) { fprintf( stderr, "`-%c'\n", optopt );