Avoid a compiler warning

This commit is contained in:
Moritz Bunkus 2011-09-18 16:06:30 +02:00
parent c30b769ad0
commit 94416a2baa

View File

@ -76,7 +76,8 @@ mp3_packetizer_c::get_mp3_packet(mp3_header_t *mp3header) {
if (m_byte_buffer.get_size() == 0)
return 0;
int pos, size;
int pos;
size_t size;
unsigned char *buf;
while (1) {