Commit 85d8f546 authored by Christophe Mutricy's avatar Christophe Mutricy

Add a note about mandatory argument.

parent 105150a4
......@@ -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 );
......
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