Commit e9e44b78 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Go to new line if there is no option description

parent 9ddb2cef
...@@ -302,7 +302,7 @@ vlc_module_begin () ...@@ -302,7 +302,7 @@ vlc_module_begin ()
POLARIZATION_TEXT, POLARIZATION_LONGTEXT, false) POLARIZATION_TEXT, POLARIZATION_LONGTEXT, false)
change_string_list (polarization_vlc, polarization_user, NULL) change_string_list (polarization_vlc, polarization_user, NULL)
change_safe () change_safe ()
add_integer ("dvb-voltage", 13, " ", " ", true) add_integer ("dvb-voltage", 13, "", "", true)
change_integer_range (0, 18) change_integer_range (0, 18)
change_private () change_private ()
change_safe () change_safe ()
......
...@@ -1663,6 +1663,7 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search ) ...@@ -1663,6 +1663,7 @@ static void Usage( libvlc_int_t *p_this, char const *psz_search )
i_cur_width = b_description && !b_description_hack i_cur_width = b_description && !b_description_hack
? i_width_description ? i_width_description
: i_width; : i_width;
if( !*psz_text ) strcpy(psz_text, " ");
while( *psz_text ) while( *psz_text )
{ {
char *psz_parser, *psz_word; char *psz_parser, *psz_word;
......
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