diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-04 11:30:25 +0200 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-09-04 11:30:25 +0200 |
commit | e9c58033e884b6ec8b8628793bb3d65c124b6590 (patch) | |
tree | cb77dde41b01da6ed32861d73cbd89bfb4351823 /doc | |
parent | 325ee610ba97923cbc2e7f53a73a42c094088474 (diff) | |
download | ffmpeg-e9c58033e884b6ec8b8628793bb3d65c124b6590.tar.gz |
doc/examples/http_multiclient: Fix occured typo
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
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 d42fce5c80..b9a306d835 100644 --- a/doc/examples/http_multiclient.c +++ b/doc/examples/http_multiclient.c @@ -148,7 +148,7 @@ int main(int argc, char **argv) end: avio_close(server); if (ret < 0 && ret != AVERROR_EOF) { - fprintf(stderr, "Some errors occured: %s\n", av_err2str(ret)); + fprintf(stderr, "Some errors occurred: %s\n", av_err2str(ret)); return 1; } return 0; |