Commit 2bdaf78c authored by Reimar Döffinger's avatar Reimar Döffinger

Make io_buffer_size unsigned to avoid a warning about comparing

signed and unsigned values.

Originally committed as revision 16638 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0ba39dd1
......@@ -783,7 +783,8 @@ static int64_t dyn_buf_seek(void *opaque, int64_t offset, int whence)
static int url_open_dyn_buf_internal(ByteIOContext **s, int max_packet_size)
{
DynBuffer *d;
int io_buffer_size, ret;
int ret;
unsigned io_buffer_size;
if (max_packet_size)
io_buffer_size = max_packet_size;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment