1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-10 16:14:40 +02:00

* Fixed missing return statement.

This commit is contained in:
Christian Muehlhaeuser
2011-01-13 15:05:50 +01:00
parent c0852e8871
commit b95d8a6b93

View File

@@ -223,8 +223,7 @@ BufferIODevice::isBlockEmpty( int block ) const
if ( block >= m_buffer.count() )
return true;
if ( m_buffer.at( block ).isEmpty() )
return true;
return m_buffer.at( block ).isEmpty();
}