diff options
author | Clément Bœsch <u@pkh.me> | 2016-09-30 19:33:03 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-09-30 19:35:52 +0200 |
commit | fb5e58cd773e1b8a897b689fc048efc4eca5cde9 (patch) | |
tree | 122d7fac07e1d9ce08883793c02494e01dbac06b | |
parent | 352ca77f8ab5d64960f093a7b1693072ddeaca2e (diff) | |
download | ffmpeg-fb5e58cd773e1b8a897b689fc048efc4eca5cde9.tar.gz |
doc/examples/http_multiclient: fix compilation
Fixes error: no previous prototype for ‘process_client’ [-Werror=missing-prototypes]
-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 b9a306d835..a48d36f197 100644 --- a/doc/examples/http_multiclient.c +++ b/doc/examples/http_multiclient.c @@ -33,7 +33,7 @@ #include <libavutil/opt.h> #include <unistd.h> -void process_client(AVIOContext *client, const char *in_uri) +static void process_client(AVIOContext *client, const char *in_uri) { AVIOContext *input = NULL; uint8_t buf[1024]; |