diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-08-28 14:43:54 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-09-04 13:12:00 +0200 |
commit | 7cc8d6385aaf1005700305f21d5d56b51b38c537 (patch) | |
tree | 73aff2665f8eef3fb60f7babe7403692f3d67b0f /avserver.c | |
parent | 7efe05ab298ae18437c9796f43b9f47474763a39 (diff) | |
download | ffmpeg-7cc8d6385aaf1005700305f21d5d56b51b38c537.tar.gz |
cmdutils: add support for caller-provided option context.
This is the first step to removing the globals plague from avtools.
Diffstat (limited to 'avserver.c')
-rw-r--r-- | avserver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/avserver.c b/avserver.c index 1b11cbf973..df9d07d1ad 100644 --- a/avserver.c +++ b/avserver.c @@ -4676,7 +4676,7 @@ int main(int argc, char **argv) my_program_dir = getcwd(0, 0); avserver_daemon = 1; - parse_options(argc, argv, options, NULL); + parse_options(NULL, argc, argv, options, NULL); unsetenv("http_proxy"); /* Kill the http_proxy */ |