diff options
author | Anton Khirnov <anton@khirnov.net> | 2011-04-06 08:16:06 +0200 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2011-04-06 14:10:08 +0200 |
commit | f5b386afab51a2141447b682793ce001abdaeb5c (patch) | |
tree | 4cf5ebb1faee3cfbfd40fe0d919504710987881c /libavformat/applehttpproto.c | |
parent | 56a1000917694b2277064c5573b0dd818ad7a379 (diff) | |
download | ffmpeg-f5b386afab51a2141447b682793ce001abdaeb5c.tar.gz |
Reemove remaining uses of deprecated AVERROR_NOTSUPP.
Diffstat (limited to 'libavformat/applehttpproto.c')
-rw-r--r-- | libavformat/applehttpproto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/applehttpproto.c b/libavformat/applehttpproto.c index c7e12a9fb8..64becf4634 100644 --- a/libavformat/applehttpproto.c +++ b/libavformat/applehttpproto.c @@ -181,7 +181,7 @@ static int applehttp_open(URLContext *h, const char *uri, int flags) const char *nested_url; if (flags & (URL_WRONLY | URL_RDWR)) - return AVERROR_NOTSUPP; + return AVERROR(ENOSYS); s = av_mallocz(sizeof(AppleHTTPContext)); if (!s) |