Browse Source

doc/examples/http_multiclient: fix mixed declarations and code

tags/n3.2
Clément Bœsch 9 years ago
parent
commit
f2579f7ee2
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      doc/examples/http_multiclient.c

+ 1
- 1
doc/examples/http_multiclient.c View File

@@ -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"


Loading…
Cancel
Save