Commit 8b8f30f6 authored by reimar's avatar reimar

Make io_buffer_size unsigned to avoid a warning about comparing

signed and unsigned values.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16638 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3b3e3287
......@@ -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