1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-11 00:24:12 +02:00

Fix: comparison between signed and unsigned integer

This commit is contained in:
Uwe L. Korn
2014-05-21 21:47:48 +01:00
parent 028b1f738d
commit 29b4b26d92

View File

@@ -246,7 +246,7 @@ XSPFLoader::gotBody()
m_title = m_overrideTitle;
bool shownError = false;
for ( unsigned int i = 0; i < tracklist.length(); i++ )
for ( int i = 0; i < tracklist.length(); i++ )
{
QDomNode e = tracklist.at( i );