diff options
author | Ramiro Polla | 2010-04-16 00:20:11 +0000 |
---|---|---|
committer | Ramiro Polla | 2010-04-16 00:20:11 +0000 |
commit | adef229efbf0cb2e9a8650b1e3bec03b47aea179 (patch) | |
tree | 0a756363b97c7e38acff683671b4edc41076e8b6 /libavformat | |
parent | 4aecee7fc34d5eb3dccf2b8ff070cd1029a14d96 (diff) |
AVERROR(FF_NETERROR(x)) -> FF_NETERROR(x)
FF_NETERROR is implicitly an AVERROR.
Originally committed as revision 22888 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/rtsp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/rtsp.c b/libavformat/rtsp.c index 16397e4e90..b0fa2eae25 100644 --- a/libavformat/rtsp.c +++ b/libavformat/rtsp.c @@ -1583,7 +1583,7 @@ redirect: goto fail; lower_transport_mask &= ~(1 << lower_transport); if (lower_transport_mask == 0 && err == 1) { - err = AVERROR(FF_NETERROR(EPROTONOSUPPORT)); + err = FF_NETERROR(EPROTONOSUPPORT); goto fail; } } while (err); |