Commit 199e85e3 authored by Rémi Duraffort's avatar Rémi Duraffort

add_string wants a string.

parent 57c35cd2
...@@ -199,9 +199,9 @@ vlc_module_begin () ...@@ -199,9 +199,9 @@ vlc_module_begin ()
#if defined (HAVE_ISATTY) #if defined (HAVE_ISATTY)
add_bool( "rc-fake-tty", 0, NULL, TTY_TEXT, TTY_LONGTEXT, true ) add_bool( "rc-fake-tty", 0, NULL, TTY_TEXT, TTY_LONGTEXT, true )
#endif #endif
add_string( "rc-unix", 0, NULL, UNIX_TEXT, UNIX_LONGTEXT, true ) add_string( "rc-unix", NULL, NULL, UNIX_TEXT, UNIX_LONGTEXT, true )
#endif #endif
add_string( "rc-host", 0, NULL, HOST_TEXT, HOST_LONGTEXT, true ) add_string( "rc-host", NULL, NULL, HOST_TEXT, HOST_LONGTEXT, true )
set_capability( "interface", 20 ) set_capability( "interface", 20 )
......
...@@ -157,7 +157,7 @@ vlc_module_begin () ...@@ -157,7 +157,7 @@ vlc_module_begin ()
HEIGHT_LONGTEXT, true ) HEIGHT_LONGTEXT, true )
add_string( CFG_PREFIX "sar", "1:1", NULL, RATIO_TEXT, add_string( CFG_PREFIX "sar", "1:1", NULL, RATIO_TEXT,
RATIO_LONGTEXT, false ) RATIO_LONGTEXT, false )
add_string( CFG_PREFIX "chroma", 0, NULL, CHROMA_TEXT, CHROMA_LONGTEXT, add_string( CFG_PREFIX "chroma", NULL, NULL, CHROMA_TEXT, CHROMA_LONGTEXT,
false ) false )
add_module_list( CFG_PREFIX "vfilter", "video filter2", add_module_list( CFG_PREFIX "vfilter", "video filter2",
......
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