Commit cef4089b authored by Rémi Duraffort's avatar Rémi Duraffort

zsh: really use the arguments given to the zsh generator.

parent a8b3eb65
...@@ -60,8 +60,11 @@ int main( int i_argc, const char **ppsz_argv ) ...@@ -60,8 +60,11 @@ int main( int i_argc, const char **ppsz_argv )
libvlc_exception_t ex; libvlc_exception_t ex;
libvlc_exception_init(&ex); libvlc_exception_init(&ex);
const char * const argv[] = { "vlc" }; const char *argv[i_argc + 1];
libvlc_instance_t *p_libvlc_instance = libvlc_new(1, argv, &ex); argv[0] = "vlc";
for( int i = 0; i < i_argc; i++ )
argv[i+1] = ppsz_argv[i];
libvlc_instance_t *p_libvlc_instance = libvlc_new(i_argc+1, argv, &ex);
if( !p_libvlc_instance || libvlc_exception_raised(&ex) ) if( !p_libvlc_instance || libvlc_exception_raised(&ex) )
{ {
......
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