Browse Source

libavformat: Fix several "incompatible pointer type" warnings.

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n0.11
Michael Niedermayer 13 years ago
parent
commit
a76a2ffe9d
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/aviobuf.c

+ 1
- 1
libavformat/aviobuf.c View File

@@ -665,7 +665,7 @@ int ffio_fdopen(AVIOContext **s, URLContext *h)
return AVERROR(ENOMEM); return AVERROR(ENOMEM);


*s = avio_alloc_context(buffer, buffer_size, h->flags & AVIO_FLAG_WRITE, h, *s = avio_alloc_context(buffer, buffer_size, h->flags & AVIO_FLAG_WRITE, h,
ffurl_read, ffurl_write, ffurl_seek);
(void*)ffurl_read, (void*)ffurl_write, (void*)ffurl_seek);
if (!*s) { if (!*s) {
av_free(buffer); av_free(buffer);
return AVERROR(ENOMEM); return AVERROR(ENOMEM);


Loading…
Cancel
Save