summaryrefslogtreecommitdiff
path: root/libavformat/md5proto.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-31 17:36:06 +0200
committerAnton Khirnov <anton@khirnov.net>2011-04-04 17:45:20 +0200
commite52a9145c8bf0748ae970e210e528ff56508964c (patch)
tree7fbe99aa17e8bc5d966cc4beadb4b8b2202b5a54 /libavformat/md5proto.c
parent58a48c6511f1aded04885933fdb2449251f0ec64 (diff)
avio: make url_close() internal.
Diffstat (limited to 'libavformat/md5proto.c')
-rw-r--r--libavformat/md5proto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/md5proto.c b/libavformat/md5proto.c
index ae3e96de72..3f2755eb98 100644
--- a/libavformat/md5proto.c
+++ b/libavformat/md5proto.c
@@ -69,7 +69,7 @@ static int md5_close(URLContext *h)
if (err)
return err;
err = ffurl_write(out, buf, i*2+1);
- url_close(out);
+ ffurl_close(out);
} else {
if (fwrite(buf, 1, i*2+1, stdout) < i*2+1)
err = AVERROR(errno);