diff options
author | Clément Bœsch <u@pkh.me> | 2016-09-30 19:33:35 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-09-30 19:35:52 +0200 |
commit | f2579f7ee232aaf7f4530e4b786fd0c33b6f4f8d (patch) | |
tree | c808acb1d78c3b9cda7bd2caf2ce2c36d50f781c /doc | |
parent | fb5e58cd773e1b8a897b689fc048efc4eca5cde9 (diff) | |
download | ffmpeg-f2579f7ee232aaf7f4530e4b786fd0c33b6f4f8d.tar.gz |
doc/examples/http_multiclient: fix mixed declarations and code
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/http_multiclient.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/examples/http_multiclient.c b/doc/examples/http_multiclient.c index a48d36f197..dde39f0adb 100644 --- a/doc/examples/http_multiclient.c +++ b/doc/examples/http_multiclient.c @@ -97,11 +97,11 @@ end: int main(int argc, char **argv) { - av_log_set_level(AV_LOG_TRACE); AVDictionary *options = NULL; AVIOContext *client = NULL, *server = NULL; const char *in_uri, *out_uri; int ret, pid; + av_log_set_level(AV_LOG_TRACE); if (argc < 3) { printf("usage: %s input http://hostname[:port]\n" "API example program to serve http to multiple clients.\n" |